Skip to content

Commit

Permalink
cli: add missing --wallet-alias-force and --alias-force
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed May 21, 2023
1 parent a9a3e32 commit 4e6adf9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions apps/src/lib/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3201,6 +3201,9 @@ pub mod args {
initialized, the alias will be the prefix of each new \
address joined with a number.",
))
.arg(WALLET_ALIAS_FORCE.def().about(
"Override the alias without confirmation if it already exists.",
))
.arg(GAS_AMOUNT.def().about(
"The amount being paid for the inclusion of this transaction",
))
Expand Down Expand Up @@ -3318,6 +3321,9 @@ pub mod args {
.def()
.about("An alias to be associated with the new entry."),
)
.arg(ALIAS_FORCE.def().about(
"Override the alias without confirmation if it already exists.",
))
.arg(
MASP_VALUE
.def()
Expand Down Expand Up @@ -3386,6 +3392,9 @@ pub mod args {
"An alias to be associated with the payment address.",
),
)
.arg(ALIAS_FORCE.def().about(
"Override the alias without confirmation if it already exists.",
))
.arg(VIEWING_KEY.def().about("The viewing key."))
.arg(PIN.def().about(
"Require that the single transaction to this address be \
Expand Down Expand Up @@ -3418,6 +3427,9 @@ pub mod args {
"The key and address alias. If none provided, the alias will \
be the public key hash.",
))
.arg(ALIAS_FORCE.def().about(
"Override the alias without confirmation if it already exists.",
))
.arg(UNSAFE_DONT_ENCRYPT.def().about(
"UNSAFE: Do not encrypt the keypair. Do not use this for keys \
used in a live network.",
Expand Down Expand Up @@ -3586,6 +3598,9 @@ pub mod args {
.def()
.about("An alias to be associated with the address."),
)
.arg(ALIAS_FORCE.def().about(
"Override the alias without confirmation if it already exists.",
))
.arg(
RAW_ADDRESS
.def()
Expand Down

0 comments on commit 4e6adf9

Please sign in to comment.