mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
699bfdfdb4
* Rename pow to execution * Fix complain * Fix complain
13 lines
255 B
Go
13 lines
255 B
Go
package execution
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
)
|
|
|
|
func init() {
|
|
// Override network name so that hardcoded genesis files are not loaded.
|
|
if err := params.SetActive(params.MainnetTestConfig()); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|