Fix bug in checkpoints.pl using numeric instead of string equality

This commit is contained in:
Duke
2023-11-22 13:30:43 -08:00
parent 5363c7cfb7
commit 87642c4895

View File

@@ -34,7 +34,7 @@ if ($acname) {
# HSC's by default have a blocktime of 60s # HSC's by default have a blocktime of 60s
$perday = 1440; $perday = 1440;
# Dragonx has a blocktime of 36s # Dragonx has a blocktime of 36s
$perday = 2400 if ($acname == 'DRAGONX'); $perday = 2400 if ($acname eq 'DRAGONX');
} else { } else {
$acname = 'HUSH3'; $acname = 'HUSH3';
} }