mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +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
|
||
|
}
|