2019-08-28 12:07:00 +00:00
|
|
|
# beacon_chain
|
2020-04-30 06:44:19 +00:00
|
|
|
# Copyright (c) 2018-2020 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.
|
|
|
|
|
|
|
|
# Mocking helpers for BeaconState
|
|
|
|
# ---------------------------------------------------------------
|
|
|
|
|
|
|
|
import
|
|
|
|
# Specs
|
|
|
|
../../beacon_chain/spec/[datatypes],
|
|
|
|
# Internals
|
|
|
|
../../beacon_chain/state_transition
|
|
|
|
|
2020-04-30 06:44:19 +00:00
|
|
|
proc nextEpoch*(state: var HashedBeaconState) =
|
2019-08-28 12:07:00 +00:00
|
|
|
## Transition to the start of the next epoch
|
2020-04-30 06:44:19 +00:00
|
|
|
let slot =
|
|
|
|
state.data.slot + SLOTS_PER_EPOCH - (state.data.slot mod SLOTS_PER_EPOCH)
|
2020-05-19 14:37:29 +00:00
|
|
|
discard process_slots(state, slot)
|
2019-08-28 12:07:00 +00:00
|
|
|
|
2020-04-30 06:44:19 +00:00
|
|
|
proc nextSlot*(state: var HashedBeaconState) =
|
2019-08-28 12:07:00 +00:00
|
|
|
## Transition to the next slot
|
2020-05-19 14:37:29 +00:00
|
|
|
discard process_slots(state, state.data.slot + 1)
|