Skip to content

Commit 575866b

Browse files
committed
Move base fee to end of full (mined) header
1 parent 0bc8d01 commit 575866b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eth/vm/forks/london/blocks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ class LondonMiningHeader(rlp.Serializable, MiningHeaderAPI):
8484

8585

8686
class LondonBlockHeader(rlp.Serializable, BlockHeaderAPI):
87-
fields = UNMINED_LONDON_HEADER_FIELDS + [
87+
fields = UNMINED_LONDON_HEADER_FIELDS[:-1] + [
8888
('mix_hash', binary),
8989
('nonce', Binary(8, allow_empty=True)),
90-
]
90+
] + UNMINED_LONDON_HEADER_FIELDS[-1:]
9191

9292
def __init__(self,
9393
difficulty: int,

0 commit comments

Comments
 (0)