mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
034a28710e
* Add Prater config * Register flag everywhere * gofmt * Apply suggestions from code review Co-authored-by: terence tsao <terence@prysmaticlabs.com> * Update shared/params/testnet_prater_config.go Co-authored-by: terence tsao <terence@prysmaticlabs.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
21 lines
319 B
Go
21 lines
319 B
Go
package params
|
|
|
|
const (
|
|
Mainnet configName = iota
|
|
EndToEnd
|
|
Pyrmont
|
|
Toledo
|
|
Prater
|
|
)
|
|
|
|
// ConfigNames provides network configuration names.
|
|
var ConfigNames = map[configName]string{
|
|
Mainnet: "mainnet",
|
|
EndToEnd: "end-to-end",
|
|
Pyrmont: "pyrmont",
|
|
Toledo: "toledo",
|
|
Prater: "prater",
|
|
}
|
|
|
|
type configName = int
|