mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
26 lines
575 B
Go
26 lines
575 B
Go
|
package params
|
||
|
|
||
|
func init() {
|
||
|
defaults := []*BeaconChainConfig{
|
||
|
MainnetConfig(),
|
||
|
PraterConfig(),
|
||
|
MinimalSpecConfig(),
|
||
|
E2ETestConfig(),
|
||
|
E2EMainnetTestConfig(),
|
||
|
InteropConfig(),
|
||
|
}
|
||
|
configs = newConfigset(defaults...)
|
||
|
// ensure that main net is always present and active by default
|
||
|
if err := SetActive(MainnetConfig()); err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
// make sure mainnet is present and active
|
||
|
m, err := ByName(MainnetName)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
if configs.getActive() != m {
|
||
|
panic("mainnet should always be the active config at init() time")
|
||
|
}
|
||
|
}
|