prysm-pulse/shared/params/values.go
Raul Jordan 7d5f30b01e
Delete Deprecated Flags and Old Slashing Protection for V2 (#9453)
* delete deprecated flags and old slashing protection schema

* remove toledo mentions

* build

* do not remove migration
2021-08-26 13:48:25 -05:00

22 lines
384 B
Go

package params
const (
Mainnet ConfigName = iota
Minimal
EndToEnd
Pyrmont
Prater
)
// ConfigNames provides network configuration names.
var ConfigNames = map[ConfigName]string{
Mainnet: "mainnet",
Minimal: "minimal",
EndToEnd: "end-to-end",
Pyrmont: "pyrmont",
Prater: "prater",
}
// ConfigName enum describes the type of known network in use.
type ConfigName = int