From a23c9f712da890f885ac1eb719f44c80e771993e Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 30 Apr 2019 11:44:21 +0100 Subject: [PATCH] Update 0_beacon-chain.md --- 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 dcd834281..d762ddc37 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -920,7 +920,7 @@ def get_crosslink_committee(state: BeaconState, epoch: Epoch, shard: Shard) -> L end_validator_index = (len(active_indices) * (committee_index + 1)) // committee_count return [ active_indices[get_shuffled_index(i, len(active_indices), generate_seed(state, epoch))] - for i in range(start_index, end_index) + for i in range(start_validator_index, end_validator_index) ] ```