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>
20 lines
310 B
Go
20 lines
310 B
Go
//go:build !noMainnetGenesis
|
|
// +build !noMainnetGenesis
|
|
|
|
package genesis
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/config/params"
|
|
)
|
|
|
|
var (
|
|
//go:embed mainnet.ssz.snappy
|
|
mainnetRawSSZCompressed []byte // 1.8Mb
|
|
)
|
|
|
|
func init() {
|
|
embeddedStates[params.MainnetName] = &mainnetRawSSZCompressed
|
|
}
|