Fix typo in get_new_shuffling

This commit is contained in:
Chih Cheng Liang 2018-12-20 19:36:35 +08:00 committed by GitHub
parent cedbf0ffeb
commit d3cdd3fcc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -872,7 +872,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
```