Skip to content

Commit

Permalink
cli/tx: allow to use --signatures together with --signing-keys
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Nov 20, 2024
1 parent 79a7a8e commit fc33aea
Showing 1 changed file with 8 additions and 20 deletions.
28 changes: 8 additions & 20 deletions crates/apps_lib/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7546,26 +7546,14 @@ pub mod args {
))
.conflicts_with_all([EXPIRATION_OPT.name]),
)
.arg(
SIGNING_KEYS
.def()
.help(wrap!(
"Sign the transaction with the key for the given \
public key, public key hash or alias from your \
wallet."
))
.conflicts_with_all([SIGNATURES.name]),
)
.arg(
SIGNATURES
.def()
.help(wrap!(
"List of file paths containing a serialized signature \
to be attached to a transaction. Requires to provide \
a gas payer."
))
.conflicts_with_all([SIGNING_KEYS.name]),
)
.arg(SIGNING_KEYS.def().help(wrap!(
"Sign the transaction with the key for the given public key, \
public key hash or alias from your wallet."
)))
.arg(SIGNATURES.def().help(wrap!(
"List of file paths containing a serialized signature to be \
attached to a transaction. Requires to provide a gas payer."
)))
.arg(
WRAPPER_SIGNATURE_OPT
.def()
Expand Down

0 comments on commit fc33aea

Please sign in to comment.