mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #4518
92a0827e
wallet2: make fake out selection messages less spammy (moneromooo-monero)
This commit is contained in:
commit
ed4b953bb7
1 changed files with 18 additions and 3 deletions
|
@ -37,6 +37,8 @@
|
|||
#include <boost/algorithm/string/classification.hpp>
|
||||
#include <boost/algorithm/string/trim.hpp>
|
||||
#include <boost/algorithm/string/split.hpp>
|
||||
#include <boost/algorithm/string/join.hpp>
|
||||
#include <boost/range/adaptor/transformed.hpp>
|
||||
#include "include_base_utils.h"
|
||||
using namespace epee;
|
||||
|
||||
|
@ -6966,6 +6968,8 @@ void wallet2::get_outs(std::vector<std::vector<tools::wallet2::get_outs_entry>>
|
|||
LOG_PRINT_L1("Selecting real output: " << td.m_global_output_index << " for " << print_money(amount));
|
||||
}
|
||||
|
||||
std::unordered_map<const char*, std::set<uint64_t>> picks;
|
||||
|
||||
// while we still need more mixins
|
||||
uint64_t num_usable_outs = num_outs;
|
||||
bool allow_blackballed = false;
|
||||
|
@ -7064,11 +7068,15 @@ void wallet2::get_outs(std::vector<std::vector<tools::wallet2::get_outs_entry>>
|
|||
}
|
||||
seen_indices.emplace(i);
|
||||
|
||||
LOG_PRINT_L2("picking " << i << " as " << type);
|
||||
picks[type].insert(i);
|
||||
req.outputs.push_back({amount, i});
|
||||
++num_found;
|
||||
}
|
||||
|
||||
for (const auto &pick: picks)
|
||||
MDEBUG("picking " << pick.first << " outputs: " <<
|
||||
boost::join(pick.second | boost::adaptors::transformed([](uint64_t out){return std::to_string(out);}), " "));
|
||||
|
||||
// if we had enough unusable outputs, we might fall off here and still
|
||||
// have too few outputs, so we stuff with one to keep counts good, and
|
||||
// we'll error out later
|
||||
|
@ -7084,8 +7092,15 @@ void wallet2::get_outs(std::vector<std::vector<tools::wallet2::get_outs_entry>>
|
|||
[](const get_outputs_out &a, const get_outputs_out &b) { return a.index < b.index; });
|
||||
}
|
||||
|
||||
for (auto i: req.outputs)
|
||||
LOG_PRINT_L1("asking for output " << i.index << " for " << print_money(i.amount));
|
||||
if (ELPP->vRegistry()->allowed(el::Level::Debug, MONERO_DEFAULT_LOG_CATEGORY))
|
||||
{
|
||||
std::map<uint64_t, std::set<uint64_t>> outs;
|
||||
for (const auto &i: req.outputs)
|
||||
outs[i.amount].insert(i.index);
|
||||
for (const auto &o: outs)
|
||||
MDEBUG("asking for outputs with amount " << print_money(o.first) << ": " <<
|
||||
boost::join(o.second | boost::adaptors::transformed([](uint64_t out){return std::to_string(out);}), " "));
|
||||
}
|
||||
|
||||
// get the keys for those
|
||||
m_daemon_rpc_mutex.lock();
|
||||
|
|
Loading…
Reference in a new issue