Replace unspecified SHARD_COUNT const with get_active_shard_count(previous_epoch)

This commit is contained in:
Anton Nashatyrev 2021-04-30 14:39:37 +03:00
parent 637f232ab3
commit 99d50108d0
1 changed files with 3 additions and 2 deletions

View File

@ -718,9 +718,10 @@ def charge_confirmed_header_fees(state: BeaconState) -> None:
get_active_shard_count(state, get_current_epoch(state)) get_active_shard_count(state, get_current_epoch(state))
* SLOTS_PER_EPOCH * GASPRICE_ADJUSTMENT_COEFFICIENT * SLOTS_PER_EPOCH * GASPRICE_ADJUSTMENT_COEFFICIENT
) )
previous_epoch_start_slot = compute_start_slot_at_epoch(get_previous_epoch(state)) previous_epoch = get_previous_epoch(state)
previous_epoch_start_slot = compute_start_slot_at_epoch(previous_epoch)
for slot in range(previous_epoch_start_slot, previous_epoch_start_slot + SLOTS_PER_EPOCH): for slot in range(previous_epoch_start_slot, previous_epoch_start_slot + SLOTS_PER_EPOCH):
for shard_index in range(SHARD_COUNT): for shard_index in range(get_active_shard_count(state, previous_epoch)):
shard = Shard(shard_index) shard = Shard(shard_index)
confirmed_candidates = [ confirmed_candidates = [
c for c in state.previous_epoch_pending_shard_headers c for c in state.previous_epoch_pending_shard_headers