Merge pull request #345 from ChihChengLiang/patch-2

Fix typo in get_new_shuffling
This commit is contained in:
Danny Ryan 2018-12-20 07:52:30 -06:00 committed by GitHub
commit e780be349e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -871,7 +871,7 @@ def get_new_shuffling(seed: Hash32,
)
for shard_position, indices in enumerate(shard_indices)
]
output.append(shards_and_committees_for_slot)
output.append(shard_committees)
return output
```