From c4e8dc23f46c94a24aa2d440810d1f70f143bc74 Mon Sep 17 00:00:00 2001 From: rkapka Date: Thu, 2 May 2024 16:54:17 +0900 Subject: [PATCH] Fix typo in `get_committee_indices` --- specs/electra/beacon-chain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/electra/beacon-chain.md b/specs/electra/beacon-chain.md index 262401f0e6..62da891146 100644 --- a/specs/electra/beacon-chain.md +++ b/specs/electra/beacon-chain.md @@ -514,8 +514,8 @@ def is_partially_withdrawable_validator(validator: Validator, balance: Gwei) -> #### `get_committee_indices` ```python -def get_committee_indices(commitee_bits: Bitvector) -> Sequence[CommitteeIndex]: - return [CommitteeIndex(index) for index, bit in enumerate(commitee_bits) if bit] +def get_committee_indices(committee_bits: Bitvector) -> Sequence[CommitteeIndex]: + return [CommitteeIndex(index) for index, bit in enumerate(committee_bits) if bit] ``` #### `get_validator_max_effective_balance`