mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
|
package helpers
|
||
|
|
||
|
import (
|
||
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
||
|
"github.com/prysmaticlabs/prysm/shared/params"
|
||
|
)
|
||
|
|
||
|
var config = params.BeaconConfig()
|
||
|
|
||
|
// SlotToEpoch returns the epoch number of the input slot.
|
||
|
//
|
||
|
// Spec pseudocode definition:
|
||
|
// def slot_to_epoch(slot: SlotNumber) -> EpochNumber:
|
||
|
// return slot // EPOCH_LENGTH
|
||
|
func SlotToEpoch(slot uint64) uint64 {
|
||
|
return slot / config.EpochLength
|
||
|
}
|
||
|
|
||
|
// CurrentEpoch returns the current epoch number calculated from
|
||
|
// the slot number stored in beacon state.
|
||
|
//
|
||
|
// Spec pseudocode definition:
|
||
|
// def get_current_epoch(state: BeaconState) -> EpochNumber:
|
||
|
// return slot_to_epoch(state.slot)
|
||
|
func CurrentEpoch(state *pb.BeaconState) uint64 {
|
||
|
return SlotToEpoch(state.Slot)
|
||
|
}
|
||
|
|
||
|
// PrevEpoch returns the previous epoch number calculated from
|
||
|
// the slot number stored in beacon state. It also checks for
|
||
|
// underflow condition.
|
||
|
func PrevEpoch(state *pb.BeaconState) uint64 {
|
||
|
if SlotToEpoch(state.Slot) == 0 {
|
||
|
return 0
|
||
|
}
|
||
|
return SlotToEpoch(state.Slot) - 1
|
||
|
}
|
||
|
|
||
|
// NextEpoch returns the next epoch number calculated form
|
||
|
// the slot number stored in beacon state.
|
||
|
func NextEpoch(state *pb.BeaconState) uint64 {
|
||
|
return SlotToEpoch(state.Slot) + 1
|
||
|
}
|
||
|
|
||
|
// StartSlot returns the first slot number of the
|
||
|
// current epoch.
|
||
|
//
|
||
|
// Spec pseudocode definition:
|
||
|
// def get_epoch_start_slot(epoch: EpochNumber) -> SlotNumber:
|
||
|
// return epoch * EPOCH_LENGTH
|
||
|
func StartSlot(epoch uint64) uint64 {
|
||
|
return epoch * config.EpochLength
|
||
|
}
|