fix comment: committees per slot for given *epoch*

This commit is contained in:
protolambda 2020-06-17 20:23:26 +02:00
parent 9b60a9b799
commit ce0371a66b
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623
1 changed files with 1 additions and 1 deletions

View File

@ -953,7 +953,7 @@ def get_seed(state: BeaconState, epoch: Epoch, domain_type: DomainType) -> Bytes
```python
def get_committee_count_per_slot(state: BeaconState, epoch: Epoch) -> uint64:
"""
Return the number of committees in each ``slot`` for the given epoch.
Return the number of committees in each slot for the given ``epoch``.
"""
return max(1, min(
MAX_COMMITTEES_PER_SLOT,