Skip to content

Commit 143b9e6

Browse files
committed
Switch the order of process_deposit_receipt and process_execution_layer_withdrawal_request
1 parent ffebf88 commit 143b9e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

specs/electra/beacon-chain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,9 +1034,9 @@ def process_operations(state: BeaconState, body: BeaconBlockBody) -> None:
10341034
for_ops(body.deposits, process_deposit) # [Modified in Electra:EIP7251]
10351035
for_ops(body.voluntary_exits, process_voluntary_exit) # [Modified in Electra:EIP7251]
10361036
for_ops(body.bls_to_execution_changes, process_bls_to_execution_change)
1037+
for_ops(body.execution_payload.deposit_receipts, process_deposit_receipt) # [New in Electra:EIP6110]
10371038
# [New in Electra:EIP7002:EIP7251]
10381039
for_ops(body.execution_payload.withdrawal_requests, process_execution_layer_withdrawal_request)
1039-
for_ops(body.execution_payload.deposit_receipts, process_deposit_receipt) # [New in Electra:EIP6110]
10401040
# [New in Electra:EIP7251]
10411041
for_ops(body.execution_payload.consolidation_requests, process_execution_layer_consolidation_request)
10421042
```

0 commit comments

Comments
 (0)