Skip to content

Commit adc5edd

Browse files
authored
Merge pull request #3914 from ensi321/dev
Minor fixes on Electra spec and test helper
2 parents 6c3868c + 1702f88 commit adc5edd

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

specs/electra/beacon-chain.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ def process_operations(state: BeaconState, body: BeaconBlockBody) -> None:
11451145
for_ops(body.proposer_slashings, process_proposer_slashing)
11461146
for_ops(body.attester_slashings, process_attester_slashing)
11471147
for_ops(body.attestations, process_attestation) # [Modified in Electra:EIP7549]
1148-
for_ops(body.deposits, process_deposit) # [Modified in Electra:EIP7251]
1148+
for_ops(body.deposits, process_deposit)
11491149
for_ops(body.voluntary_exits, process_voluntary_exit) # [Modified in Electra:EIP7251]
11501150
for_ops(body.bls_to_execution_changes, process_bls_to_execution_change)
11511151
for_ops(body.execution_payload.deposit_requests, process_deposit_request) # [New in Electra:EIP6110]
@@ -1206,7 +1206,7 @@ def process_attestation(state: BeaconState, attestation: Attestation) -> None:
12061206

12071207
###### Modified `apply_deposit`
12081208

1209-
*Note*: The function `process_deposit` is modified to support EIP7251.
1209+
*Note*: The function `apply_deposit` is modified to support EIP7251.
12101210

12111211
```python
12121212
def apply_deposit(state: BeaconState,

tests/core/pyspec/eth2spec/test/helpers/epoch_processing.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ def get_process_calls(spec):
3636
'process_participation_record_updates'
3737
),
3838
'process_sync_committee_updates', # altair
39-
'process_full_withdrawals', # capella
40-
'process_partial_withdrawals', # capella
4139
# TODO: add sharding processing functions when spec stabilizes.
4240
]
4341

0 commit comments

Comments
 (0)