Skip to content

Commit

Permalink
Merge pull request #3902 from terencechain/fix-eip7732-typos
Browse files Browse the repository at this point in the history
Fix some EIP-7732 typos
  • Loading branch information
hwwhww authored Aug 28, 2024
2 parents 7259a6c + d4f27af commit 423bb4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions specs/_features/eip7732/beacon-chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ class BeaconBlockBody(Container):
graffiti: Bytes32 # Arbitrary data
# Operations
proposer_slashings: List[ProposerSlashing, MAX_PROPOSER_SLASHINGS]
attester_slashings: List[AttesterSlashing, MAX_ATTESTER_SLASHINGS]
attestations: List[Attestation, MAX_ATTESTATIONS]
attester_slashings: List[AttesterSlashing, MAX_ATTESTER_SLASHINGS_ELECTRA]
attestations: List[Attestation, MAX_ATTESTATIONS_ELECTRA]
deposits: List[Deposit, MAX_DEPOSITS]
voluntary_exits: List[SignedVoluntaryExit, MAX_VOLUNTARY_EXITS]
sync_aggregate: SyncAggregate
Expand Down Expand Up @@ -662,7 +662,7 @@ def process_execution_payload(state: BeaconState,

for_ops(payload.deposit_requests, process_deposit_request)
for_ops(payload.withdrawal_requests, process_withdrawal_request)
for_ops(payload, process_consolidation_request)
for_ops(payload.consolidation_requests, process_consolidation_request)

# Cache the execution payload header and proposer
state.latest_block_hash = payload.block_hash
Expand Down

0 comments on commit 423bb4d

Please sign in to comment.