Skip to content

Commit e0ee280

Browse files
authored
Merge pull request #3740 from rkapka/get-committee-indices-typo
EIP-7549: Fix typo in `get_committee_indices`
2 parents e7b49dc + c4e8dc2 commit e0ee280

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)