From 0c281c81139c5e03d34d3690faf229d762a6ecb4 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Mon, 10 Dec 2018 16:17:42 -0600 Subject: [PATCH] local var i -> index --- specs/core/0_beacon-chain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 5a450ec3b..1c6e3b07f 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -1210,7 +1210,7 @@ def activate_validator(index: int, validator.latest_status_change_slot = state.slot state.validator_registry_delta_chain_tip = get_new_validator_registry_delta_chain_tip( validator_registry_delta_chain_tip=validator_registry_delta_chain_tip, - index=i, + index=index, pubkey=validator.pubkey, flag=ACTIVATION, ) @@ -1360,7 +1360,7 @@ For each `attestation` in `block.body.attestations`: Verify that `len(block.body.deposits) <= MAX_DEPOSITS`. -[TODO: add logic to ensure that deposits from 1.0 chain are processed in order:] +[TODO: add logic to ensure that deposits from 1.0 chain are processed in order] For each `deposit` in `block.body.deposits`: