File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
28
28
)
29
29
. arg (
30
30
Arg :: with_name ( "adapter" )
31
+ . long ( "adapter" )
31
32
. short ( "a" )
32
33
. help ( "the adapter for authentication and signing" )
33
34
. required ( true )
@@ -37,18 +38,21 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
37
38
)
38
39
. arg (
39
40
Arg :: with_name ( "keystoreFile" )
41
+ . long ( "keystoreFile" )
40
42
. short ( "k" )
41
43
. help ( "path to the JSON Ethereum Keystore file" )
42
44
. takes_value ( true ) ,
43
45
)
44
46
. arg (
45
47
Arg :: with_name ( "dummyIdentity" )
48
+ . long ( "dummyIdentity" )
46
49
. short ( "i" )
47
50
. help ( "the identity to use with the dummy adapter" )
48
51
. takes_value ( true ) ,
49
52
)
50
53
. arg (
51
54
Arg :: with_name ( "clustered" )
55
+ . long ( "clustered" )
52
56
. short ( "c" )
53
57
. help ( "Run app in cluster mode with multiple workers" ) ,
54
58
)
You can’t perform that action at this time.
0 commit comments