Skip to content

Commit c4e8dc2

Browse files
committed
Fix typo in get_committee_indices
1 parent c254443 commit c4e8dc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specs/electra/beacon-chain.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,8 +514,8 @@ def is_partially_withdrawable_validator(validator: Validator, balance: Gwei) ->
514514
#### `get_committee_indices`
515515

516516
```python
517-
def get_committee_indices(commitee_bits: Bitvector) -> Sequence[CommitteeIndex]:
518-
return [CommitteeIndex(index) for index, bit in enumerate(commitee_bits) if bit]
517+
def get_committee_indices(committee_bits: Bitvector) -> Sequence[CommitteeIndex]:
518+
return [CommitteeIndex(index) for index, bit in enumerate(committee_bits) if bit]
519519
```
520520

521521
#### `get_validator_max_effective_balance`

0 commit comments

Comments
 (0)