From 7de7d342e4c9850182ed26c2cae300708beaa015 Mon Sep 17 00:00:00 2001 From: crystalin Date: Wed, 17 Jul 2024 21:34:28 +0200 Subject: [PATCH] Fixes round time --- src/tools/list-collator-candidates.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/list-collator-candidates.ts b/src/tools/list-collator-candidates.ts index f025890..7d1bc13 100644 --- a/src/tools/list-collator-candidates.ts +++ b/src/tools/list-collator-candidates.ts @@ -145,7 +145,7 @@ const main = async () => { const candidateOffCount = candidateList.filter((c) => !c.isActive).length; const nextRoundSeconds = - 12 * (roundInfo.first.toNumber() + roundInfo.length.toNumber() - blockHeader.number.toNumber()); + 6 * (roundInfo.first.toNumber() + roundInfo.length.toNumber() - blockHeader.number.toNumber()); const printColoredNumber = (value: bigint, total: bigint) => { const valueWithCommas = numberWithCommas(value / 10n ** 18n);