Skip to content

Commit 423bb4d

Browse files
authored
Merge pull request #3902 from terencechain/fix-eip7732-typos
Fix some EIP-7732 typos
2 parents 7259a6c + d4f27af commit 423bb4d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

specs/_features/eip7732/beacon-chain.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)