From 6cace1d666da2fad4b3869b1d0866ff1948145a3 Mon Sep 17 00:00:00 2001 From: cyan Date: Mon, 9 Dec 2024 18:20:06 +0000 Subject: fix string format --- patches/monero/0021-fix-error-messages-with-coin-control.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/monero/0021-fix-error-messages-with-coin-control.patch b/patches/monero/0021-fix-error-messages-with-coin-control.patch index 5e741d6..b4e3625 100644 --- a/patches/monero/0021-fix-error-messages-with-coin-control.patch +++ b/patches/monero/0021-fix-error-messages-with-coin-control.patch @@ -42,8 +42,8 @@ index de507b3..731055a 100644 print_money(e.fee()); + if (max_coin_control_input != 0 && + max_coin_control_input != e.available()) { -+ writer << std::endl << boost::format(tr("In addition, coin control was enabled for this transaction, limiting available balance to %s. Make sure that you have enough outputs selected in coin control" % -+ print_money(max_coin_control_input))); ++ writer << std::endl << boost::format(tr("In addition, coin control was enabled for this transaction, limiting available balance to %s. Make sure that you have enough outputs selected in coin control")) % ++ print_money(max_coin_control_input); + } setStatusError(writer.str()); } catch (const tools::error::not_enough_outs_to_mix& e) { -- cgit v1.2.3