diff --git a/cli/src/cli.rs b/cli/src/cli.rs index 34c895e2cb..4ce4d6e2a2 100644 --- a/cli/src/cli.rs +++ b/cli/src/cli.rs @@ -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()),