Skip to content

Commit

Permalink
use electra constants for max lengths of attester slasings & attestat…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
jacobkaufmann committed Sep 16, 2024
1 parent ec66864 commit 19f0bce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions specs/electra/builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This is the modification of the builder specification accompanying the Electra u

### Extended containers

##### `BlindedBeaconBlockBody`
#### `BlindedBeaconBlockBody`

Note: `BlindedBeaconBlock` and `SignedBlindedBeaconBlock` types are updated indirectly.

Expand All @@ -18,8 +18,8 @@ class BlindedBeaconBlockBody(Container):
eth1_data: Eth1Data
graffiti: Bytes32
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] # [Modified in Electra:EIP7549]
attestations: List[Attestation, MAX_ATTESTATIONS_ELECTRA] # [Modified in Electra:EIP7549]
deposits: List[Deposit, MAX_DEPOSITS]
voluntary_exits: List[SignedVoluntaryExit, MAX_VOLUNTARY_EXITS]
sync_aggregate: SyncAggregate
Expand Down

0 comments on commit 19f0bce

Please sign in to comment.