File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -184,8 +184,8 @@ class BeaconBlockBody(Container):
184184 graffiti: Bytes32 # Arbitrary data
185185 # Operations
186186 proposer_slashings: List[ProposerSlashing, MAX_PROPOSER_SLASHINGS ]
187- attester_slashings: List[AttesterSlashing, MAX_ATTESTER_SLASHINGS ]
188- attestations: List[Attestation, MAX_ATTESTATIONS ]
187+ attester_slashings: List[AttesterSlashing, MAX_ATTESTER_SLASHINGS_ELECTRA ]
188+ attestations: List[Attestation, MAX_ATTESTATIONS_ELECTRA ]
189189 deposits: List[Deposit, MAX_DEPOSITS ]
190190 voluntary_exits: List[SignedVoluntaryExit, MAX_VOLUNTARY_EXITS ]
191191 sync_aggregate: SyncAggregate
@@ -662,7 +662,7 @@ def process_execution_payload(state: BeaconState,
662662
663663 for_ops(payload.deposit_requests, process_deposit_request)
664664 for_ops(payload.withdrawal_requests, process_withdrawal_request)
665- for_ops(payload, process_consolidation_request)
665+ for_ops(payload.consolidation_requests , process_consolidation_request)
666666
667667 # Cache the execution payload header and proposer
668668 state.latest_block_hash = payload.block_hash
You can’t perform that action at this time.
0 commit comments