rpc: fix get_output_distribution cache for the cumulative case

The distribution was not converted to cumulative after a cache hit
pull/88/head
moneromooo-monero 6 years ago
parent aa6850c71d
commit 15e029ac6d
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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;
}
}

Loading…
Cancel
Save