Skip to content

Commit 7bd6ecc

Browse files
holimanatif-konasl
authored andcommitted
consensus/ethash: change eip3554 from 9.5M to 9.7M (ethereum#22870)
1 parent 45b7500 commit 7bd6ecc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

consensus/ethash/consensus.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ var (
4646
allowedFutureBlockTimeSeconds = int64(15) // Max seconds from current time allowed for blocks, before they're considered future blocks
4747

4848
// calcDifficultyEip3554 is the difficulty adjustment algorithm as specified by EIP 3554.
49-
// It offsets the bomb a total of 9.5M blocks.
49+
// It offsets the bomb a total of 9.7M blocks.
5050
// Specification EIP-3554: https://eips.ethereum.org/EIPS/eip-3554
51-
calcDifficultyEip3554 = makeDifficultyCalculator(big.NewInt(9500000))
51+
calcDifficultyEip3554 = makeDifficultyCalculator(big.NewInt(9700000))
5252

5353
// calcDifficultyEip2384 is the difficulty adjustment algorithm as specified by EIP 2384.
5454
// It offsets the bomb 4M blocks from Constantinople, so in total 9M blocks.

0 commit comments

Comments
 (0)