mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
e477fdfd6d
* Update rules_go and fix proto conflicts * gaz * Update generated code * First pass inclusion of using baked states * more emptypb fixes * remove testnet genesis files, only embed mainnet * Refactoring for SaveGenesisData, fix tests that use mainnet config but do not support mainnet genesis values * a bit more refactoring, load genesis from a file. Needs tests still * Add method to ensure an embedded genesis file also has the appropriate genesis block * gofmt * more clear error * Check genesis fork version to ensure testnet config matches genesis file * viz * test for SaveGenesisData * More genesis db method tests * Merge * Minor tweaks, lint, fmt, etc * Add more test to genesis db methods * Revert beacon-chain/state/stateV0/BUILD.bazel * Update beacon-chain/db/iface/errors.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * PR feedback * Update beacon-chain/db/kv/genesis.go Co-authored-by: terence tsao <terence@prysmaticlabs.com> * fmt.Errorf works better for nil errors Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
22 lines
382 B
Go
22 lines
382 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",
|
|
}
|
|
|
|
// ConfigName enum describes the type of known network in use.
|
|
type ConfigName = int
|