From 83d54f6aa4da262b06317f67c1aa9b4f02cce3d2 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Wed, 9 Jan 2019 10:59:45 -0600 Subject: [PATCH] Update specs/core/0_beacon-chain.md Co-Authored-By: vbuterin --- 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 ad88ee49f..6ddfb0cca 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -902,7 +902,7 @@ def get_prev_epoch_committees_per_slot(state: BeaconState): #### `get_cur_epoch_committees_per_slot` ```python -def get_cur_epoch_committees_per_slot(state: BeaconState): +def get_cur_epoch_committees_per_slot(state: BeaconState) -> int: cur_active_validators = get_active_validator_indices(validators, state.cur_epoch_calculation_slot) return get_committees_per_slot(len(cur_active_validators)) ```