From 00feb5b5733a5b68ff72030bd7ee732e85b2eabc Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Fri, 27 Dec 2019 08:59:04 -0500 Subject: [PATCH] Update block_time.pl to also print out GMT time --- contrib/block_time.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/contrib/block_time.pl b/contrib/block_time.pl index 784d05b12..dff43ea4e 100755 --- a/contrib/block_time.pl +++ b/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"; }