Add stub --allow-unfunded-recipient argument for forward compatibility with v1.6
This commit is contained in:
@ -2194,6 +2194,12 @@ pub fn app<'ab, 'v>(name: &str, about: &'ab str, version: &'v str) -> App<'ab, '
|
|||||||
.requires("derived_address_seed")
|
.requires("derived_address_seed")
|
||||||
.hidden(true)
|
.hidden(true)
|
||||||
)
|
)
|
||||||
|
.arg(
|
||||||
|
Arg::with_name("allow_unfunded_recipient")
|
||||||
|
.long("allow-unfunded-recipient")
|
||||||
|
.takes_value(false)
|
||||||
|
.hidden(true) // Forward compatibility with v1.6
|
||||||
|
)
|
||||||
.offline_args()
|
.offline_args()
|
||||||
.nonce_args(false)
|
.nonce_args(false)
|
||||||
.arg(fee_payer_arg()),
|
.arg(fee_payer_arg()),
|
||||||
|
Reference in New Issue
Block a user