Merge pull request #404 from akhila-raju/patch-2

Removes naming conflict in get_shuffling.
This commit is contained in:
Danny Ryan 2019-01-08 09:57:56 -07:00 committed by GitHub
commit 197b88df92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -887,11 +887,11 @@ def get_shuffling(seed: Hash32,
validators_per_slot = split(shuffled_active_validator_indices, EPOCH_LENGTH)
output = []
for slot, slot_indices in enumerate(validators_per_slot):
for slot_position, slot_indices in enumerate(validators_per_slot):
# Split the shuffled list into committees_per_slot pieces
shard_indices = split(slot_indices, committees_per_slot)
shard_id_start = crosslinking_start_shard + slot * committees_per_slot
shard_id_start = crosslinking_start_shard + slot_position * committees_per_slot
shard_committees = [
ShardCommittee(