Skip to content

Commit d37b308

Browse files
committed
eip-3554: delay difficulty bomb further to ~ Dec 2021
1 parent efa07f7 commit d37b308

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

eth/vm/forks/london/headers.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@
2222
from eth.constants import GENESIS_GAS_LIMIT
2323
from eth.rlp.headers import BlockHeader
2424
from eth.vm.forks.berlin.headers import (
25-
compute_berlin_difficulty,
2625
configure_header,
2726
)
27+
from eth.vm.forks.muir_glacier.headers import (
28+
compute_difficulty,
29+
)
30+
2831

2932
from .blocks import LondonBlockHeader
3033
from .constants import (
@@ -121,7 +124,7 @@ def create_header_from_parent(difficulty_fn: Callable[[BlockHeaderAPI, int], int
121124
return new_header
122125

123126

124-
compute_london_difficulty = compute_berlin_difficulty
127+
compute_london_difficulty = compute_difficulty(9700000)
125128

126129
create_london_header_from_parent = create_header_from_parent(
127130
compute_london_difficulty

0 commit comments

Comments
 (0)