mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
14 lines
358 B
Go
14 lines
358 B
Go
|
package params
|
||
|
|
||
|
// UsePulseChainNetworkConfig uses the PulseChain beacon chain mainnet network config.
|
||
|
func UsePulseChainNetworkConfig() {
|
||
|
// TODO
|
||
|
UsePulseChainTestnetNetworkConfig()
|
||
|
}
|
||
|
|
||
|
// PulseChainConfig defines the config for the PulseChain beacon chain mainnet.
|
||
|
func PulseChainConfig() *BeaconChainConfig {
|
||
|
// TODO
|
||
|
return PulseChainTestnetConfig()
|
||
|
}
|