@@ -52,12 +52,21 @@ Protocol Options:
52
52
Account Options:
53
53
--unlock ACCOUNTS Unlock ACCOUNTS for the duration of the execution.
54
54
ACCOUNTS is a comma-delimited list of addresses.
55
+ Implies --no-signer.
55
56
--password FILE Provide a file containing a password for unlocking
56
57
an account.
57
58
--keys-iterations NUM Specify the number of iterations to use when
58
59
deriving key from the password (bigger is more
59
60
secure) [default: 10240].
60
61
--no-import-keys Do not import keys from legacy clients.
62
+ --force-signer Enable Trusted Signer WebSocket endpoint used by
63
+ Signer UIs, even when --unlock is in use.
64
+ --no-signer Disable Trusted Signer WebSocket endpoint used by
65
+ Signer UIs.
66
+ --signer-port PORT Specify the port of Trusted Signer server
67
+ [default: 8180].
68
+ --signer-path PATH Specify directory where Signer UIs tokens should
69
+ be stored. [default: $HOME/.parity/signer]
61
70
62
71
Networking Options:
63
72
--no-network Disable p2p networking.
@@ -114,17 +123,6 @@ API and Console Options:
114
123
--dapps-path PATH Specify directory where dapps should be installed.
115
124
[default: $HOME/.parity/dapps]
116
125
117
- --signer Enable Trusted Signer WebSocket endpoint used by
118
- Signer UIs. Default if run with ui command.
119
- --no-signer Disable Trusted Signer WebSocket endpoint used by
120
- Signer UIs. Default if no command is specified.
121
- --signer-port PORT Specify the port of Trusted Signer server
122
- [default: 8180].
123
- --signer-path PATH Specify directory where Signer UIs tokens should
124
- be stored. [default: $HOME/.parity/signer]
125
- --no-token By default a new system UI security token will be
126
- output on start up. This will prevent it.
127
-
128
126
Sealing/Mining Options:
129
127
--author ADDRESS Specify the block author (aka "coinbase") address
130
128
for sending block rewards from sealed blocks.
@@ -309,11 +307,10 @@ pub struct Args {
309
307
pub flag_dapps_user : Option < String > ,
310
308
pub flag_dapps_pass : Option < String > ,
311
309
pub flag_dapps_path : String ,
312
- pub flag_signer : bool ,
310
+ pub flag_force_signer : bool ,
313
311
pub flag_no_signer : bool ,
314
312
pub flag_signer_port : u16 ,
315
313
pub flag_signer_path : String ,
316
- pub flag_no_token : bool ,
317
314
pub flag_force_sealing : bool ,
318
315
pub flag_reseal_on_txs : String ,
319
316
pub flag_reseal_min_period : u64 ,
0 commit comments