From 4829e1f10c38255ba7c3fe6dcf2d0b2d016699bd Mon Sep 17 00:00:00 2001 From: ledgerwatch <akhounov@gmail.com> Date: Fri, 21 May 2021 11:35:25 +0100 Subject: [PATCH] Update consensus.go (#1981) --- consensus/ethash/consensus.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/consensus/ethash/consensus.go b/consensus/ethash/consensus.go index 578040017d..954db94586 100644 --- a/consensus/ethash/consensus.go +++ b/consensus/ethash/consensus.go @@ -50,9 +50,9 @@ var ( allowedFutureBlockTimeSeconds = int64(15) // Max seconds from current time allowed for blocks, before they're considered future blocks // calcDifficultyEip3554 is the difficulty adjustment algorithm as specified by EIP 3554. - // It offsets the bomb a total of 9.5M blocks. + // It offsets the bomb a total of 9.7M blocks. // Specification EIP-3554: https://eips.ethereum.org/EIPS/eip-3554 - calcDifficultyEip3554 = makeDifficultyCalculator(9500000) + calcDifficultyEip3554 = makeDifficultyCalculator(9700000) // calcDifficultyEip2384 is the difficulty adjustment algorithm as specified by EIP 2384. // It offsets the bomb 4M blocks from Constantinople, so in total 9M blocks. -- GitLab