mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
bfdaf8a3f5
* don't mutate mainnet config * add missing minimal config params * Ensure all yaml fields were set and are correct * gofmt * Add sanity check that some empty yaml wasn't given * Gazelle and deepsource feedback
24 lines
413 B
Go
24 lines
413 B
Go
package params
|
|
|
|
const (
|
|
Mainnet ConfigName = iota
|
|
Minimal
|
|
EndToEnd
|
|
Pyrmont
|
|
Toledo
|
|
Prater
|
|
)
|
|
|
|
// ConfigNames provides network configuration names.
|
|
var ConfigNames = map[ConfigName]string{
|
|
Mainnet: "mainnet",
|
|
Minimal: "minimal",
|
|
EndToEnd: "end-to-end",
|
|
Pyrmont: "pyrmont",
|
|
Toledo: "toledo",
|
|
Prater: "prater",
|
|
}
|
|
|
|
// ConfigName enum describes the type of known network in use.
|
|
type ConfigName = int
|