mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
13 lines
257 B
Go
13 lines
257 B
Go
|
package powchain
|
||
|
|
||
|
import (
|
||
|
"github.com/prysmaticlabs/prysm/shared/params"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
// Override network name so that hardcoded genesis files are not loaded.
|
||
|
cfg := params.BeaconConfig()
|
||
|
cfg.ConfigName = "test"
|
||
|
params.OverrideBeaconConfig(cfg)
|
||
|
}
|