mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
cdea2debc9
* validator cmd * imports * more imports * e2e viz * alias * use native alias * add actual * fix macro * work on fix e2e * add viz * gaz Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
22 lines
687 B
Go
22 lines
687 B
Go
package flags
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Flags defined for interoperability testing.
|
|
var (
|
|
InteropStartIndex = &cli.Uint64Flag{
|
|
Name: "interop-start-index",
|
|
Usage: "The start index to deterministically generate validator keys when used in combination with " +
|
|
"--interop-num-validators. Example: --interop-start-index=5 --interop-num-validators=3 would generate " +
|
|
"keys from index 5 to 7.",
|
|
}
|
|
InteropNumValidators = &cli.Uint64Flag{
|
|
Name: "interop-num-validators",
|
|
Usage: "The number of validators to deterministically generate. " +
|
|
"Example: --interop-start-index=5 --interop-num-validators=3 would generate " +
|
|
"keys from index 5 to 7.",
|
|
}
|
|
)
|