From ec6686477b51f2b391221eda36b7bd836eb89c88 Mon Sep 17 00:00:00 2001 From: jacobkaufmann Date: Mon, 16 Sep 2024 14:00:12 -0600 Subject: [PATCH] adjust for move of exec reqs from exec payload to beacon block --- specs/electra/builder.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/specs/electra/builder.md b/specs/electra/builder.md index 10f0101..2966257 100644 --- a/specs/electra/builder.md +++ b/specs/electra/builder.md @@ -8,12 +8,6 @@ This is the modification of the builder specification accompanying the Electra u ### Extended containers -#### `ExecutionPayloadHeader` - -See [`ExecutionPayloadHeader`](https://github.com/ethereum/consensus-specs/blob/dev/specs/electra/beacon-chain.md#executionpayloadheader) in Electra consensus specs. - -Note: `ExecutionPayloadAndBlobsBundle` and `BuilderBid` and `SignedBuilderBid` types are updated indirectly. - ##### `BlindedBeaconBlockBody` Note: `BlindedBeaconBlock` and `SignedBlindedBeaconBlock` types are updated indirectly. @@ -29,8 +23,8 @@ class BlindedBeaconBlockBody(Container): deposits: List[Deposit, MAX_DEPOSITS] voluntary_exits: List[SignedVoluntaryExit, MAX_VOLUNTARY_EXITS] sync_aggregate: SyncAggregate - execution_payload_header: ExecutionPayloadHeader # [Modified in Electra] + execution_payload_header: ExecutionPayloadHeader bls_to_execution_changes: List[SignedBLSToExecutionChange, MAX_BLS_TO_EXECUTION_CHANGES] blob_kzg_commitments: List[KZGCommitment, MAX_BLOB_COMMITMENTS_PER_BLOCK] - consolidations: List[SignedConsolidation, MAX_CONSOLIDATIONS] # [New in Electra] + execution_requests: ExecutionRequests # [New in Electra] ```