Skip to content

Commit 97a7e5e

Browse files
fix empty execution payload
1 parent e9c9a0a commit 97a7e5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/core/pyspec/eth2spec/test/helpers/execution_payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def build_empty_execution_payload(spec, state, randao_mix=None):
358358
payload.gas_limit = latest.gas_limit # retain same limit
359359
payload.base_fee_per_gas = latest.base_fee_per_gas # retain same base_fee
360360
if is_post_capella(spec):
361-
payload.withdrawals = get_expected_withdrawals(spec, state)
361+
payload.withdrawals = []
362362
if is_post_deneb(spec):
363363
payload.blob_gas_used = 0
364364
payload.excess_blob_gas = 0

0 commit comments

Comments
 (0)