Skip to content

Commit

Permalink
rebase 5.3.X [PATCH 075/142] Fix error when estimating fees for selec…
Browse files Browse the repository at this point in the history
…tion strategies (mimblewimble#545)
  • Loading branch information
bayk committed Aug 1, 2024
1 parent ed9ecc9 commit f7fd71e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cmd/wallet_args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -539,9 +539,9 @@ pub fn parse_send_args(args: &ArgMatches) -> Result<command::SendArgs, ParseErro
)) {
Ok(a) => Some(a),
Err(e) => {
if !estimate_selection_strategies {
println!("No recipient Slatepack address or provided address invalid. No payment proof will be requested.");
}
if !estimate_selection_strategies {
println!("No recipient Slatepack address or provided address invalid. No payment proof will be requested.");
}
let msg = format!("Invalid proof address: {:?}", e);
return Err(ParseError::ArgumentError(msg));
}
Expand Down

0 comments on commit f7fd71e

Please sign in to comment.