From fe5a472ff6eff666b144395cddfcb1f6ce69a5f1 Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Mon, 3 Dec 2018 15:14:31 +0100 Subject: [PATCH] Small typo in get_active_validator_indices Change [ValidatorRecords] to [ValidatorRecord] --- specs/core/0_beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 15d1a4b8a..7617f18a6 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -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``. """