Browse Source

Update block_time.pl to also print out GMT time

pull/62/head
Duke Leto 4 years ago
parent
commit
00feb5b573
  1. 6
      contrib/block_time.pl

6
contrib/block_time.pl

@ -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";
}

Loading…
Cancel
Save