We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aba6345 commit b641582Copy full SHA for b641582
specs/electra/fork.md
@@ -88,8 +88,8 @@ def upgrade_to_electra(pre: deneb.BeaconState) -> BeaconState:
88
block_hash=pre.latest_execution_payload_header.block_hash,
89
transactions_root=pre.latest_execution_payload_header.transactions_root,
90
withdrawals_root=pre.latest_execution_payload_header.withdrawals_root,
91
- blob_gas_used=uint64(0),
92
- excess_blob_gas=uint64(0),
+ blob_gas_used=pre.latest_execution_payload_header.blob_gas_used,
+ excess_blob_gas=pre.latest_execution_payload_header.excess_blob_gas,
93
deposit_receipts_root=Root(), # [New in Electra:EIP6110]
94
exits_root=Root(), # [New in Electra:EIP-7002],
95
)
0 commit comments