Merge PR #4321: Improve offline flag doc
This commit is contained in:
parent
2d3a251157
commit
7558f76079
|
@ -71,7 +71,10 @@ be generated via the 'multisign' command.
|
|||
"Print the addresses that must sign the transaction, those who have already signed it, and make sure that signatures are in the correct order",
|
||||
)
|
||||
cmd.Flags().Bool(flagSigOnly, false, "Print only the generated signature, then exit")
|
||||
cmd.Flags().Bool(flagOffline, false, "Offline mode; Do not query a full node")
|
||||
cmd.Flags().Bool(
|
||||
flagOffline, false,
|
||||
"Offline mode; Do not query a full node. --account and --sequence options would be ignored if offline is set",
|
||||
)
|
||||
cmd.Flags().String(flagOutfile, "", "The document will be written to the given file instead of STDOUT")
|
||||
|
||||
cmd = client.PostCommands(cmd)[0]
|
||||
|
|
Loading…
Reference in New Issue