Added missing colon

This commit is contained in:
vbuterin 2019-03-03 05:54:58 -06:00 committed by GitHub
parent d0fc455a1f
commit 73f9ad0512
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -800,7 +800,7 @@ def get_epoch_committee_count(active_validator_count: int) -> int:
```python
def get_shuffling(seed: Bytes32,
validators: List[Validator],
epoch: Epoch) -> List[List[ValidatorIndex]]
epoch: Epoch) -> List[List[ValidatorIndex]]:
"""
Shuffle active validators and split into crosslink committees.
Return a list of committees (each a list of validator indices).