summaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
authorcyan <cyjan@mrcyjanek.net>2024-12-09 18:20:06 +0000
committercyan <cyjan@mrcyjanek.net>2024-12-09 19:33:44 +0000
commit6cace1d666da2fad4b3869b1d0866ff1948145a3 (patch)
treed75a82dc569c1fa4d89c380220b208998254f12b /patches
parentaadd5acb1a6e4888733446f1e66dc1e53ee0f7de (diff)
Diffstat (limited to 'patches')
-rw-r--r--patches/monero/0021-fix-error-messages-with-coin-control.patch4
1 files 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) {