File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ fn main() -> Result<(), Box<dyn Error>> {
36
36
)
37
37
. arg (
38
38
Arg :: with_name ( "adapter" )
39
+ . long ( "adapter" )
39
40
. short ( "a" )
40
41
. help ( "the adapter for authentication and signing" )
41
42
. required ( true )
@@ -45,18 +46,21 @@ fn main() -> Result<(), Box<dyn Error>> {
45
46
)
46
47
. arg (
47
48
Arg :: with_name ( "keystoreFile" )
49
+ . long ( "keystoreFile" )
48
50
. short ( "k" )
49
51
. help ( "path to the JSON Ethereum Keystore file" )
50
52
. takes_value ( true ) ,
51
53
)
52
54
. arg (
53
55
Arg :: with_name ( "dummyIdentity" )
56
+ . long ( "dummyIdentity" )
54
57
. short ( "i" )
55
58
. help ( "the identity to use with the dummy adapter" )
56
59
. takes_value ( true ) ,
57
60
)
58
61
. arg (
59
62
Arg :: with_name ( "sentryUrl" )
63
+ . long ( "sentryUrl" )
60
64
. short ( "u" )
61
65
. help ( "the URL to the sentry used for listing channels" )
62
66
. default_value ( "http://127.0.0.1:8005" )
@@ -65,6 +69,7 @@ fn main() -> Result<(), Box<dyn Error>> {
65
69
)
66
70
. arg (
67
71
Arg :: with_name ( "singleTick" )
72
+ . long ( "singleTick" )
68
73
. short ( "t" )
69
74
. takes_value ( false )
70
75
. help ( "runs the validator in single-tick mode and exit" ) ,
You can’t perform that action at this time.
0 commit comments