mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
20 lines
322 B
Go
20 lines
322 B
Go
//go:build !noMainnetGenesis
|
|
// +build !noMainnetGenesis
|
|
|
|
package genesis
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/config/params"
|
|
)
|
|
|
|
var (
|
|
//go:embed pulsechain.ssz.snappy
|
|
pulseChainRawSSZCompressed []byte // 466Kb
|
|
)
|
|
|
|
func init() {
|
|
embeddedStates[params.PulseChainName] = &pulseChainRawSSZCompressed
|
|
}
|