From 785aca81ea4aa0081a92198e19d680d9661cba9d Mon Sep 17 00:00:00 2001 From: cyan Date: Mon, 30 Dec 2024 13:50:10 +0000 Subject: [PATCH] remove patch --- ...fix-error-messages-with-coin-control.patch | 96 ------------------- 1 file changed, 96 deletions(-) delete mode 100644 patches/monero/0021-fix-error-messages-with-coin-control.patch diff --git a/patches/monero/0021-fix-error-messages-with-coin-control.patch b/patches/monero/0021-fix-error-messages-with-coin-control.patch deleted file mode 100644 index 1caf15c..0000000 --- a/patches/monero/0021-fix-error-messages-with-coin-control.patch +++ /dev/null @@ -1,96 +0,0 @@ -From 1737ff03788db38d198955dab136d0388d674ba2 Mon Sep 17 00:00:00 2001 -From: Czarek Nakamoto -Date: Mon, 9 Dec 2024 11:21:06 -0500 -Subject: [PATCH] fix error messages with coin control - ---- - src/wallet/api/wallet.cpp | 44 ++++++++++++++++++++++++++++++++++++++- - 1 file changed, 43 insertions(+), 1 deletion(-) - -diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp -index de507b3de..3e33a318c 100644 ---- a/src/wallet/api/wallet.cpp -+++ b/src/wallet/api/wallet.cpp -@@ -2156,8 +2156,10 @@ PendingTransaction *WalletImpl::createTransactionMultDest(const std::vector preferred_input_list; -+ uint64_t max_coin_control_input = 0; -+ uint64_t max_frozen_input = 0; - if (!preferred_inputs.empty()) { -- LOG_ERROR("empty"); -+ LOG_ERROR("not empty"); - - for (const auto &public_key : preferred_inputs) { - crypto::key_image keyImage; -@@ -2173,6 +2175,16 @@ PendingTransaction *WalletImpl::createTransactionMultDest(const std::vectorget_num_transfer_details(); ++i) { -+ const tools::wallet2::transfer_details &td = m_wallet->get_transfer_details(i); -+ if (td.m_key_image == keyImage) { -+ max_coin_control_input += td.amount(); -+ } -+ if (td.m_frozen) { -+ max_frozen_input += td.amount(); -+ } -+ } -+ - preferred_input_list.push_back(keyImage); - } - } else { -@@ -2236,6 +2248,16 @@ PendingTransaction *WalletImpl::createTransactionMultDest(const std::vector