mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-06 22:23:56 -05:00
13 lines
258 B
Go
13 lines
258 B
Go
package blockchain
|
|
|
|
import (
|
|
"github.com/OffchainLabs/prysm/v7/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)
|
|
}
|
|
}
|