diff --git a/presets/minimal/capella.yaml b/presets/minimal/capella.yaml index 476738f3f..1ac8a806c 100644 --- a/presets/minimal/capella.yaml +++ b/presets/minimal/capella.yaml @@ -8,5 +8,5 @@ MAX_BLS_TO_EXECUTION_CHANGES: 16 # Execution # --------------------------------------------------------------- -# 2**2 (= 4) +# [customized] 2**2 (= 4) MAX_WITHDRAWALS_PER_PAYLOAD: 4 diff --git a/specs/capella/beacon-chain.md b/specs/capella/beacon-chain.md index c362539be..88777d1d6 100644 --- a/specs/capella/beacon-chain.md +++ b/specs/capella/beacon-chain.md @@ -276,7 +276,7 @@ def process_block(state: BeaconState, block: BeaconBlock) -> None: process_execution_payload(state, block.body.execution_payload, EXECUTION_ENGINE) # [Modified in Capella] process_randao(state, block.body) process_eth1_data(state, block.body) - process_operations(state, block.body) + process_operations(state, block.body) # [Modified in Capella] process_sync_aggregate(state, block.body.sync_aggregate) ``` diff --git a/tests/core/pyspec/eth2spec/test/capella/block_processing/test_process_withdrawals.py b/tests/core/pyspec/eth2spec/test/capella/block_processing/test_process_withdrawals.py index 30af9ab51..fbf0387b4 100644 --- a/tests/core/pyspec/eth2spec/test/capella/block_processing/test_process_withdrawals.py +++ b/tests/core/pyspec/eth2spec/test/capella/block_processing/test_process_withdrawals.py @@ -741,8 +741,8 @@ def run_random_partial_withdrawals_test(spec, state, rng): execution_payload = build_empty_execution_payload(spec, state) - # Note: due to the randomness and other epoch processing, some of these set as "partially withdrawable" - # may not be partially withdrawable once we get to ``process_partial_withdrawals``, + # Note: due to the randomness and other block processing, some of these set as "partially withdrawable" + # may not be partially withdrawable once we get to ``process_withdrawals``, # thus *not* using the optional third param in this call yield from run_withdrawals_processing(spec, state, execution_payload)