mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 21:27:19 +00:00
e1310adb4c
* docs improvements so far * all misc docs items * finalized * Merge branch 'master' into qsp-docs * fix broken test * Merge branch 'master' into qsp-docs
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.",
|
|
}
|
|
)
|