From 15e029ac6db3c81585049f7f6452b7e494642dd6 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Wed, 30 May 2018 15:03:36 +0100 Subject: [PATCH] rpc: fix get_output_distribution cache for the cumulative case The distribution was not converted to cumulative after a cache hit --- src/rpc/core_rpc_server.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index e28914d96..7d769e0dc 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -2112,6 +2112,13 @@ namespace cryptonote { res.distributions.push_back({amount, slot.start_height, slot.distribution, slot.base}); found = true; + if (req.cumulative) + { + auto &distribution = res.distributions.back().distribution; + distribution[0] += slot.base; + for (size_t n = 1; n < distribution.size(); ++n) + distribution[n] += distribution[n-1]; + } break; } }