aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/core_rpc_server.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-10-18 12:21:11 +0200
committerRiccardo Spagni <ric@spagni.net>2016-10-18 12:21:11 +0200
commit0a41b03fc7528a7f8446c7d571df4228976d1d29 (patch)
tree13a382d23d674b33a2375dacb5c6c824b49ddef8 /src/rpc/core_rpc_server.cpp
parent34fcfcd7ccc0a7943e832ec0c59382b5cbc85307 (diff)
parent88faec75fe768a5702c3f8d9384c0913e4af22aa (diff)
downloadmonzero-core-0a41b03fc7528a7f8446c7d571df4228976d1d29.tar.gz
monzero-core-0a41b03fc7528a7f8446c7d571df4228976d1d29.tar.xz
monzero-core-0a41b03fc7528a7f8446c7d571df4228976d1d29.zip
Merge pull request #1082
88faec7 wallet: select part of the fake outs from recent outputs (moneromooo-monero)
Diffstat (limited to 'src/rpc/core_rpc_server.cpp')
-rw-r--r--src/rpc/core_rpc_server.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp
index e8b2d5cb1..f5258268c 100644
--- a/src/rpc/core_rpc_server.cpp
+++ b/src/rpc/core_rpc_server.cpp
@@ -1236,10 +1236,10 @@ namespace cryptonote
return false;
}
- std::map<uint64_t, uint64_t> histogram;
+ std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>> histogram;
try
{
- histogram = m_core.get_blockchain_storage().get_output_histogram(req.amounts, req.unlocked);
+ histogram = m_core.get_blockchain_storage().get_output_histogram(req.amounts, req.unlocked, req.recent_cutoff);
}
catch (const std::exception &e)
{
@@ -1251,8 +1251,8 @@ namespace cryptonote
res.histogram.reserve(histogram.size());
for (const auto &i: histogram)
{
- if (i.second >= req.min_count && (i.second <= req.max_count || req.max_count == 0))
- res.histogram.push_back(COMMAND_RPC_GET_OUTPUT_HISTOGRAM::entry(i.first, i.second));
+ if (std::get<0>(i.second) >= req.min_count && (std::get<0>(i.second) <= req.max_count || req.max_count == 0))
+ res.histogram.push_back(COMMAND_RPC_GET_OUTPUT_HISTOGRAM::entry(i.first, std::get<0>(i.second), std::get<1>(i.second), std::get<2>(i.second)));
}
res.status = CORE_RPC_STATUS_OK;