diff --git a/src/wallet/mod.rs b/src/wallet/mod.rs index 3b223bba..aacfe480 100644 --- a/src/wallet/mod.rs +++ b/src/wallet/mod.rs @@ -448,7 +448,6 @@ where output: vec![], }; - // try not to move from `params` because we still need to use it later. let recipients = match ¶ms.single_recipient { Some(recipient) => vec![(recipient, 0)], None => params.recipients.iter().map(|(r, v)| (r, *v)).collect(),