mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-15 06:28:20 +00:00
84916672c6
* replace eth2 types * replace protos * regen proto * replace * gaz * deps * amend * regen proto * mod * gaz * gaz * ensure build * ssz * add dep * no more eth2 types * no more eth2 * remg * all builds * buidl * tidy * clean * fmt * val serv * gaz Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
52 lines
2.9 KiB
Go
52 lines
2.9 KiB
Go
//go:build !minimal
|
|
// +build !minimal
|
|
|
|
package v1
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/prysmaticlabs/go-bitfield"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/fieldtrie"
|
|
customtypes "github.com/prysmaticlabs/prysm/beacon-chain/state/state-native/custom-types"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/stateutil"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/types"
|
|
eth2types "github.com/prysmaticlabs/prysm/consensus-types/primitives"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
// BeaconState defines a struct containing utilities for the Ethereum Beacon Chain state, defining
|
|
// getters and setters for its respective values and helpful functions such as HashTreeRoot().
|
|
type BeaconState struct {
|
|
genesisTime uint64 `ssz-gen:"true"`
|
|
genesisValidatorsRoot customtypes.Byte32 `ssz-gen:"true" ssz-size:"32"`
|
|
slot eth2types.Slot `ssz-gen:"true"`
|
|
fork *ethpb.Fork `ssz-gen:"true"`
|
|
latestBlockHeader *ethpb.BeaconBlockHeader `ssz-gen:"true"`
|
|
blockRoots *customtypes.BlockRoots `ssz-gen:"true" ssz-size:"8192,32"`
|
|
stateRoots *customtypes.StateRoots `ssz-gen:"true" ssz-size:"8192,32"`
|
|
historicalRoots customtypes.HistoricalRoots `ssz-gen:"true" ssz-size:"?,32" ssz-max:"16777216"`
|
|
eth1Data *ethpb.Eth1Data `ssz-gen:"true"`
|
|
eth1DataVotes []*ethpb.Eth1Data `ssz-gen:"true" ssz-max:"2048"`
|
|
eth1DepositIndex uint64 `ssz-gen:"true"`
|
|
validators []*ethpb.Validator `ssz-gen:"true" ssz-max:"1099511627776"`
|
|
balances []uint64 `ssz-gen:"true" ssz-max:"1099511627776"`
|
|
randaoMixes *customtypes.RandaoMixes `ssz-gen:"true" ssz-size:"65536,32"`
|
|
slashings []uint64 `ssz-gen:"true" ssz-size:"8192"`
|
|
previousEpochAttestations []*ethpb.PendingAttestation `ssz-gen:"true" ssz-max:"4096"`
|
|
currentEpochAttestations []*ethpb.PendingAttestation `ssz-gen:"true" ssz-max:"4096"`
|
|
justificationBits bitfield.Bitvector4 `ssz-gen:"true" ssz-size:"1"`
|
|
previousJustifiedCheckpoint *ethpb.Checkpoint `ssz-gen:"true"`
|
|
currentJustifiedCheckpoint *ethpb.Checkpoint `ssz-gen:"true"`
|
|
finalizedCheckpoint *ethpb.Checkpoint `ssz-gen:"true"`
|
|
|
|
lock sync.RWMutex
|
|
dirtyFields map[types.FieldIndex]bool
|
|
dirtyIndices map[types.FieldIndex][]uint64
|
|
stateFieldLeaves map[types.FieldIndex]*fieldtrie.FieldTrie
|
|
rebuildTrie map[types.FieldIndex]bool
|
|
valMapHandler *stateutil.ValidatorMapHandler
|
|
merkleLayers [][][]byte
|
|
sharedFieldReferences map[types.FieldIndex]*stateutil.Reference
|
|
}
|