mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
f3d6dbcc1e
* config params into pkg * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
13 lines
251 B
Go
13 lines
251 B
Go
package kv
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
)
|
|
|
|
func init() {
|
|
// Override network name so that hardcoded genesis files are not loaded.
|
|
cfg := params.BeaconConfig()
|
|
cfg.ConfigName = "test"
|
|
params.OverrideBeaconConfig(cfg)
|
|
}
|