From 87642c48955c465438d4c3f6d2e071c0225f274f Mon Sep 17 00:00:00 2001 From: Duke Date: Wed, 22 Nov 2023 13:30:43 -0800 Subject: [PATCH] Fix bug in checkpoints.pl using numeric instead of string equality --- util/checkpoints.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/checkpoints.pl b/util/checkpoints.pl index 153c2dcba..d131e68d7 100755 --- a/util/checkpoints.pl +++ b/util/checkpoints.pl @@ -34,7 +34,7 @@ if ($acname) { # HSC's by default have a blocktime of 60s $perday = 1440; # Dragonx has a blocktime of 36s - $perday = 2400 if ($acname == 'DRAGONX'); + $perday = 2400 if ($acname eq 'DRAGONX'); } else { $acname = 'HUSH3'; }