Add stub --allow-unfunded-recipient argument for forward compatibility with v1.6

This commit is contained in:
Michael Vines
2021-03-22 11:41:17 -07:00
parent f356a05e96
commit 734a4e39f7

View File

@ -2194,6 +2194,12 @@ pub fn app<'ab, 'v>(name: &str, about: &'ab str, version: &'v str) -> App<'ab, '
.requires("derived_address_seed")
.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()
.nonce_args(false)
.arg(fee_payer_arg()),