Update block_time.pl to also print out GMT time

This commit is contained in:
Duke Leto
2019-12-27 08:59:04 -05:00
parent e40a65c2a8
commit 00feb5b573

View File

@@ -17,7 +17,9 @@ if ($block <= $blockcount) {
my $seconds = $minutes*60;
my $now = time;
my $then = $now + $seconds;
my $date = localtime($then);
my $ldate = localtime($then);
my $gmdate = gmtime($then);
print "Hush Block $block will happen at roughly:\n";
print "$date # $then\n";
print "$ldate Eastern # $then\n";
print "$gmdate GMT # $then\n";
}