Merge pull request #3674 from ensi321/add-container-change
EIP-7549: Add `AttesterSlashing` to modified containers
This commit is contained in:
commit
3e45cdcff7
|
@ -30,6 +30,8 @@
|
|||
- [`Consolidation`](#consolidation)
|
||||
- [`SignedConsolidation`](#signedconsolidation)
|
||||
- [`PendingConsolidation`](#pendingconsolidation)
|
||||
- [Modified Containers](#modified-containers)
|
||||
- [`AttesterSlashing`](#attesterslashing)
|
||||
- [Extended Containers](#extended-containers)
|
||||
- [`Attestation`](#attestation)
|
||||
- [`IndexedAttestation`](#indexedattestation)
|
||||
|
@ -259,6 +261,16 @@ class PendingConsolidation(Container):
|
|||
target_index: ValidatorIndex
|
||||
```
|
||||
|
||||
### Modified Containers
|
||||
|
||||
#### `AttesterSlashing`
|
||||
|
||||
```python
|
||||
class AttesterSlashing(Container):
|
||||
attestation_1: IndexedAttestation # [Modified in Electra:EIP7549]
|
||||
attestation_2: IndexedAttestation # [Modified in Electra:EIP7549]
|
||||
```
|
||||
|
||||
### Extended Containers
|
||||
|
||||
#### `Attestation`
|
||||
|
|
Loading…
Reference in New Issue