Skip to content

Commit 1db1c54

Browse files
authored
add comment
1 parent 3cf3e21 commit 1db1c54

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

specs/_features/eip7002/beacon-chain.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ def process_operations(state: BeaconState, body: BeaconBlockBody) -> None:
222222
```python
223223
def process_execution_layer_exit(state: BeaconState, execution_layer_exit: ExecutionLayerExit) -> None:
224224
validator_pubkeys = [v.pubkey for v in state.validators]
225+
# Verify pubkey exists
225226
pubkey_to_exit = execution_layer_exit.validator_pubkey
226227
if pubkey_to_exit not in validator_pubkeys:
227228
return

0 commit comments

Comments
 (0)