2019-08-28 12:07:00 +00:00
|
|
|
# beacon_chain
|
2021-06-11 17:51:46 +00:00
|
|
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
2019-08-28 12:07:00 +00:00
|
|
|
# Licensed and distributed under either of
|
2019-11-25 15:30:02 +00:00
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
2019-08-28 12:07:00 +00:00
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
import
|
|
|
|
# Specs
|
2020-06-23 13:54:24 +00:00
|
|
|
../../beacon_chain/spec/[
|
2021-06-11 17:51:46 +00:00
|
|
|
datatypes, forkedbeaconstate_helpers, state_transition,
|
|
|
|
state_transition_epoch]
|
2019-08-28 12:07:00 +00:00
|
|
|
|
2021-06-11 17:51:46 +00:00
|
|
|
proc processSlotsUntilEndCurrentEpoch(state: var ForkedHashedBeaconState) =
|
2019-08-28 12:07:00 +00:00
|
|
|
# Process all slots until the end of the last slot of the current epoch
|
2021-05-07 11:36:21 +00:00
|
|
|
var
|
|
|
|
cache = StateCache()
|
|
|
|
rewards = RewardInfo()
|
2020-04-30 06:44:19 +00:00
|
|
|
let slot =
|
2021-06-11 17:51:46 +00:00
|
|
|
getStateField(state, slot) + SLOTS_PER_EPOCH -
|
|
|
|
(getStateField(state, slot) mod SLOTS_PER_EPOCH)
|
2019-08-28 12:07:00 +00:00
|
|
|
|
|
|
|
# Transition to slot before the epoch state transition
|
2021-06-11 17:51:46 +00:00
|
|
|
discard process_slots(state, slot - 1, cache, rewards, {}, FAR_FUTURE_SLOT)
|
2019-08-28 12:07:00 +00:00
|
|
|
|
|
|
|
# For the last slot of the epoch,
|
|
|
|
# only process_slot without process_epoch
|
2021-05-05 06:54:21 +00:00
|
|
|
# (see process_slots()) - state.root is invalid after here!
|
2021-06-11 17:51:46 +00:00
|
|
|
process_slot(state.hbsPhase0.data, getStateRoot(state))
|
2019-08-28 12:07:00 +00:00
|
|
|
|
2021-06-11 17:51:46 +00:00
|
|
|
proc transitionEpochUntilJustificationFinalization*(state: var ForkedHashedBeaconState) =
|
2019-08-28 12:07:00 +00:00
|
|
|
# Process slots and do the epoch transition until crosslinks
|
|
|
|
processSlotsUntilEndCurrentEpoch(state)
|
|
|
|
|
2021-05-07 11:36:21 +00:00
|
|
|
var
|
|
|
|
cache = StateCache()
|
|
|
|
rewards = RewardInfo()
|
2019-08-28 12:07:00 +00:00
|
|
|
|
2021-06-11 17:51:46 +00:00
|
|
|
rewards.init(state.hbsPhase0.data)
|
|
|
|
rewards.process_attestations(state.hbsPhase0.data, cache)
|
2020-10-22 11:08:46 +00:00
|
|
|
process_justification_and_finalization(
|
2021-06-11 17:51:46 +00:00
|
|
|
state.hbsPhase0.data, rewards.total_balances)
|