Skip to content

Commit

Permalink
Merge pull request #3740 from rkapka/get-committee-indices-typo
Browse files Browse the repository at this point in the history
EIP-7549: Fix typo in `get_committee_indices`
  • Loading branch information
mkalinin authored May 2, 2024
2 parents e7b49dc + c4e8dc2 commit e0ee280
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions specs/electra/beacon-chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit e0ee280

Please sign in to comment.