mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
54772596e0
* Add rest of state v2 * Update BUILD.bazel
60 lines
1.7 KiB
Go
60 lines
1.7 KiB
Go
package v2
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/stateutil"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
"github.com/prysmaticlabs/prysm/shared/htrutils"
|
|
)
|
|
|
|
// eth1Root computes the HashTreeRoot Merkleization of
|
|
// a BeaconBlockHeader struct according to the eth2
|
|
// Simple Serialize specification.
|
|
func eth1Root(hasher htrutils.HashFn, eth1Data *ethpb.Eth1Data) ([32]byte, error) {
|
|
if eth1Data == nil {
|
|
return [32]byte{}, errors.New("nil eth1 data")
|
|
}
|
|
|
|
enc := stateutil.Eth1DataEncKey(eth1Data)
|
|
if featureconfig.Get().EnableSSZCache {
|
|
if found, ok := cachedHasher.rootsCache.Get(string(enc)); ok && found != nil {
|
|
return found.([32]byte), nil
|
|
}
|
|
}
|
|
|
|
root, err := stateutil.Eth1DataRootWithHasher(hasher, eth1Data)
|
|
if err != nil {
|
|
return [32]byte{}, err
|
|
}
|
|
|
|
if featureconfig.Get().EnableSSZCache {
|
|
cachedHasher.rootsCache.Set(string(enc), root, 32)
|
|
}
|
|
return root, nil
|
|
}
|
|
|
|
// eth1DataVotesRoot computes the HashTreeRoot Merkleization of
|
|
// a list of Eth1Data structs according to the eth2
|
|
// Simple Serialize specification.
|
|
func eth1DataVotesRoot(eth1DataVotes []*ethpb.Eth1Data) ([32]byte, error) {
|
|
hashKey, err := stateutil.Eth1DatasEncKey(eth1DataVotes)
|
|
if err != nil {
|
|
return [32]byte{}, err
|
|
}
|
|
|
|
if featureconfig.Get().EnableSSZCache {
|
|
if found, ok := cachedHasher.rootsCache.Get(string(hashKey[:])); ok && found != nil {
|
|
return found.([32]byte), nil
|
|
}
|
|
}
|
|
root, err := stateutil.Eth1DatasRoot(eth1DataVotes)
|
|
if err != nil {
|
|
return [32]byte{}, err
|
|
}
|
|
if featureconfig.Get().EnableSSZCache {
|
|
cachedHasher.rootsCache.Set(string(hashKey[:]), root, 32)
|
|
}
|
|
return root, nil
|
|
}
|