From 4986311d5bb1e716e9dd6eea59864d44732b97ec Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Tue, 25 Jun 2019 10:24:14 -0600 Subject: [PATCH] Update 0_beacon-chain.md fix typo w/ refactor --- specs/core/0_beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 99425c6c2..56a6fd06a 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -1142,7 +1142,7 @@ def is_genesis_trigger(deposits: Sequence[Deposit], timestamp: uint64) -> bool: # Count active validators at genesis active_validator_count = 0 - for validator in state.validator_registry: + for validator in state.validators: if validator.effective_balance == MAX_EFFECTIVE_BALANCE: active_validator_count += 1