From 062606197727d1fb328c0a4b0c41648ab1bd9479 Mon Sep 17 00:00:00 2001 From: terence tsao Date: Wed, 5 Dec 2018 17:26:07 -0800 Subject: [PATCH] don't need slot num in get_active_validator_indices --- 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 637c7109d..f0f144850 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -660,7 +660,7 @@ The beacon chain fork choice rule is a hybrid that combines justification and fi def lmd_ghost(store, start): validators = start.state.validator_registry active_validators = [validators[i] for i in - get_active_validator_indices(validators, start.slot)] + get_active_validator_indices(validators)] attestation_targets = [get_latest_attestation_target(store, validator) for validator in active_validators] def get_vote_count(block):