From a0a96c7e7c3487a41a3f20e62bce1575a423c171 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Thu, 10 Jan 2019 21:00:59 -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 69031dc86..48e7e688a 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -905,7 +905,7 @@ def get_previous_epoch_committees_per_slot(state: BeaconState) -> int: #### `get_current_epoch_committees_per_slot` ```python -def get_current_epoch_committees_per_slot(state: BeaconState) -> int: +def get_current_epoch_committee_count_per_slot(state: BeaconState) -> int: current_active_validators = get_active_validator_indices(validators, state.current_epoch_calculation_slot) return get_committees_per_slot(len(current_active_validators)) ```