Skip to content

Commit b4cfe83

Browse files
authored
Fix rlp for blocks with no withdrawals. (#37)
1 parent e99bf37 commit b4cfe83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ethereum_test_tools/spec/blockchain_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def make_block(
184184
header=header.to_geth_dict(),
185185
txs=txs_rlp,
186186
ommers=[],
187-
withdrawals=to_json_or_none(block.withdrawals),
187+
withdrawals=to_json_or_none(env.withdrawals),
188188
)
189189

190190
if block.exception is None:

0 commit comments

Comments
 (0)