mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
f4307a902c
Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com> Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
35 lines
871 B
Go
35 lines
871 B
Go
package genesis
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/golang/snappy"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/state"
|
|
state_native "github.com/prysmaticlabs/prysm/v4/beacon-chain/state/state-native"
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
var embeddedStates = map[string]*[]byte{}
|
|
|
|
// State returns a copy of the genesis state from a hardcoded value.
|
|
func State(name string) (state.BeaconState, error) {
|
|
sb, exists := embeddedStates[name]
|
|
if exists {
|
|
return load(*sb)
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
// load a compressed ssz state file into a beacon state struct.
|
|
func load(b []byte) (state.BeaconState, error) {
|
|
st := ðpb.BeaconState{}
|
|
b, err := snappy.Decode(nil /*dst*/, b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := st.UnmarshalSSZ(b); err != nil {
|
|
return nil, err
|
|
}
|
|
return state_native.InitializeFromProtoUnsafePhase0(st)
|
|
}
|