-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
6f262b5
commit 9b28992
Showing
6 changed files
with
60 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package flags | ||
|
||
import ( | ||
"gopkg.in/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 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.", | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters