Small typo in get_active_validator_indices

Change [ValidatorRecords] to [ValidatorRecord]
This commit is contained in:
Mamy Ratsimbazafy 2018-12-03 15:14:31 +01:00 committed by GitHub
parent 2983e68f03
commit fe5a472ff6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ Note: The definitions below are for specification purposes and are not necessari
#### `get_active_validator_indices`
```python
def get_active_validator_indices(validators: [ValidatorRecords]) -> List[int]:
def get_active_validator_indices(validators: [ValidatorRecord]) -> List[int]:
"""
Gets indices of active validators from ``validators``.
"""