mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57: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>
33 lines
1.3 KiB
Go
33 lines
1.3 KiB
Go
package flags
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var (
|
|
// InteropGenesisStateFlag defines a flag for the beacon node to load genesis state via file.
|
|
InteropGenesisStateFlag = &cli.StringFlag{
|
|
Name: "interop-genesis-state",
|
|
Usage: "The genesis state file (.SSZ) to load from. Note: loading from an interop genesis " +
|
|
"state does not use a web3 connection to read any deposits. This interop " +
|
|
"functionality should not be used with public testnets.",
|
|
}
|
|
// InteropMockEth1DataVotesFlag enables mocking the eth1 proof-of-work chain data put into blocks by proposers.
|
|
InteropMockEth1DataVotesFlag = &cli.BoolFlag{
|
|
Name: "interop-eth1data-votes",
|
|
Usage: "Enable mocking of eth1 data votes for proposers to package into blocks",
|
|
}
|
|
|
|
// InteropGenesisTimeFlag specifies genesis time for state generation.
|
|
InteropGenesisTimeFlag = &cli.Uint64Flag{
|
|
Name: "interop-genesis-time",
|
|
Usage: "Specify the genesis time for interop genesis state generation. Must be used with " +
|
|
"--interop-num-validators",
|
|
}
|
|
// InteropNumValidatorsFlag specifies number of genesis validators for state generation.
|
|
InteropNumValidatorsFlag = &cli.Uint64Flag{
|
|
Name: "interop-num-validators",
|
|
Usage: "Specify number of genesis validators to generate for interop. Must be used with --interop-genesis-time",
|
|
}
|
|
)
|