mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
14 lines
362 B
Go
14 lines
362 B
Go
package params
|
|
|
|
// UsePulseChainNetworkConfig uses the PulseChain beacon chain mainnet network config.
|
|
func UsePulseChainNetworkConfig() {
|
|
// TODO
|
|
UsePulseChainTestnetV4NetworkConfig()
|
|
}
|
|
|
|
// PulseChainConfig defines the config for the PulseChain beacon chain mainnet.
|
|
func PulseChainConfig() *BeaconChainConfig {
|
|
// TODO
|
|
return PulseChainTestnetV4Config()
|
|
}
|