mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
e477fdfd6d
* Update rules_go and fix proto conflicts * gaz * Update generated code * First pass inclusion of using baked states * more emptypb fixes * remove testnet genesis files, only embed mainnet * Refactoring for SaveGenesisData, fix tests that use mainnet config but do not support mainnet genesis values * a bit more refactoring, load genesis from a file. Needs tests still * Add method to ensure an embedded genesis file also has the appropriate genesis block * gofmt * more clear error * Check genesis fork version to ensure testnet config matches genesis file * viz * test for SaveGenesisData * More genesis db method tests * Merge * Minor tweaks, lint, fmt, etc * Add more test to genesis db methods * Revert beacon-chain/state/stateV0/BUILD.bazel * Update beacon-chain/db/iface/errors.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * PR feedback * Update beacon-chain/db/kv/genesis.go Co-authored-by: terence tsao <terence@prysmaticlabs.com> * fmt.Errorf works better for nil errors Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
40 lines
931 B
Go
40 lines
931 B
Go
package genesis
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/golang/snappy"
|
|
state "github.com/prysmaticlabs/prysm/beacon-chain/state/stateV0"
|
|
pbp2p "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
)
|
|
|
|
var (
|
|
//go:embed mainnet.ssz.snappy
|
|
mainnetRawSSZCompressed []byte // 1.8Mb
|
|
)
|
|
|
|
// State returns a copy of the genesis state from a hardcoded value.
|
|
func State(name string) (*state.BeaconState, error) {
|
|
switch name {
|
|
case params.ConfigNames[params.Mainnet]:
|
|
return load(mainnetRawSSZCompressed)
|
|
default:
|
|
// No state found.
|
|
return nil, nil
|
|
}
|
|
}
|
|
|
|
// load a compressed ssz state file into a beacon state struct.
|
|
func load(b []byte) (*state.BeaconState, error) {
|
|
st := &pbp2p.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.InitializeFromProtoUnsafe(st)
|
|
}
|