Skip to content

Commit

Permalink
fix empty execution payload
Browse files Browse the repository at this point in the history
  • Loading branch information
KatyaRyazantseva committed Dec 16, 2024
1 parent e9c9a0a commit 97a7e5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def build_empty_execution_payload(spec, state, randao_mix=None):
payload.gas_limit = latest.gas_limit # retain same limit
payload.base_fee_per_gas = latest.base_fee_per_gas # retain same base_fee
if is_post_capella(spec):
payload.withdrawals = get_expected_withdrawals(spec, state)
payload.withdrawals = []
if is_post_deneb(spec):
payload.blob_gas_used = 0
payload.excess_blob_gas = 0
Expand Down

0 comments on commit 97a7e5e

Please sign in to comment.