fix typo: `state` missed in `get_committee_count_per_slot` call

This commit is contained in:
ericsson 2021-04-24 17:32:59 +03:00
parent 47e52a6361
commit 6814efac2e
1 changed files with 1 additions and 1 deletions

View File

@ -752,7 +752,7 @@ def reset_pending_headers(state: BeaconState) -> None:
next_epoch = get_current_epoch(state) + 1
next_epoch_start_slot = compute_start_slot_at_epoch(next_epoch)
for slot in range(next_epoch_start_slot, next_epoch_start_slot + SLOTS_IN_EPOCH):
for index in range(get_committee_count_per_slot(next_epoch)):
for index in range(get_committee_count_per_slot(state, next_epoch)):
shard = compute_shard_from_committee_index(state, slot, index)
committee_length = len(get_beacon_committee(state, slot, shard))
state.current_epoch_pending_shard_headers.append(PendingShardHeader(