mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
106 lines
2.7 KiB
Go
106 lines
2.7 KiB
Go
package state_native
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
customtypes "github.com/prysmaticlabs/prysm/v5/beacon-chain/state/state-native/custom-types"
|
|
"github.com/prysmaticlabs/prysm/v5/config/features"
|
|
consensus_types "github.com/prysmaticlabs/prysm/v5/consensus-types"
|
|
ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
// LatestBlockHeader stored within the beacon state.
|
|
func (b *BeaconState) LatestBlockHeader() *ethpb.BeaconBlockHeader {
|
|
if b.latestBlockHeader == nil {
|
|
return nil
|
|
}
|
|
|
|
b.lock.RLock()
|
|
defer b.lock.RUnlock()
|
|
|
|
return b.latestBlockHeaderVal()
|
|
}
|
|
|
|
// latestBlockHeaderVal stored within the beacon state.
|
|
// This assumes that a lock is already held on BeaconState.
|
|
func (b *BeaconState) latestBlockHeaderVal() *ethpb.BeaconBlockHeader {
|
|
if b.latestBlockHeader == nil {
|
|
return nil
|
|
}
|
|
|
|
hdr := ðpb.BeaconBlockHeader{
|
|
Slot: b.latestBlockHeader.Slot,
|
|
ProposerIndex: b.latestBlockHeader.ProposerIndex,
|
|
}
|
|
|
|
parentRoot := make([]byte, len(b.latestBlockHeader.ParentRoot))
|
|
bodyRoot := make([]byte, len(b.latestBlockHeader.BodyRoot))
|
|
stateRoot := make([]byte, len(b.latestBlockHeader.StateRoot))
|
|
|
|
copy(parentRoot, b.latestBlockHeader.ParentRoot)
|
|
copy(bodyRoot, b.latestBlockHeader.BodyRoot)
|
|
copy(stateRoot, b.latestBlockHeader.StateRoot)
|
|
hdr.ParentRoot = parentRoot
|
|
hdr.BodyRoot = bodyRoot
|
|
hdr.StateRoot = stateRoot
|
|
return hdr
|
|
}
|
|
|
|
// BlockRoots kept track of in the beacon state.
|
|
func (b *BeaconState) BlockRoots() [][]byte {
|
|
b.lock.RLock()
|
|
defer b.lock.RUnlock()
|
|
|
|
roots := b.blockRootsVal()
|
|
if roots == nil {
|
|
return nil
|
|
}
|
|
return roots.Slice()
|
|
}
|
|
|
|
func (b *BeaconState) blockRootsVal() customtypes.BlockRoots {
|
|
if features.Get().EnableExperimentalState {
|
|
if b.blockRootsMultiValue == nil {
|
|
return nil
|
|
}
|
|
return b.blockRootsMultiValue.Value(b)
|
|
}
|
|
return b.blockRoots
|
|
}
|
|
|
|
// BlockRootAtIndex retrieves a specific block root based on an
|
|
// input index value.
|
|
func (b *BeaconState) BlockRootAtIndex(idx uint64) ([]byte, error) {
|
|
b.lock.RLock()
|
|
defer b.lock.RUnlock()
|
|
|
|
if features.Get().EnableExperimentalState {
|
|
if b.blockRootsMultiValue == nil {
|
|
return []byte{}, nil
|
|
}
|
|
r, err := b.blockRootsMultiValue.At(b, idx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return r[:], nil
|
|
}
|
|
|
|
if b.blockRoots == nil {
|
|
return []byte{}, nil
|
|
}
|
|
r, err := b.blockRootAtIndex(idx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return r[:], nil
|
|
}
|
|
|
|
// blockRootAtIndex retrieves a specific block root based on an
|
|
// input index value.
|
|
// This assumes that a lock is already held on BeaconState.
|
|
func (b *BeaconState) blockRootAtIndex(idx uint64) ([32]byte, error) {
|
|
if uint64(len(b.blockRoots)) <= idx {
|
|
return [32]byte{}, errors.Wrapf(consensus_types.ErrOutOfBounds, "block root index %d does not exist", idx)
|
|
}
|
|
return b.blockRoots[idx], nil
|
|
}
|