Merge pull request #3882
b665bab
rpc: fix get_output_distribution cache for the cumulative case (moneromooo-monero)
This commit is contained in:
commit
9fde7aafe8
|
@ -2097,6 +2097,13 @@ namespace cryptonote
|
||||||
{
|
{
|
||||||
res.distributions.push_back({amount, slot.start_height, slot.distribution, slot.base});
|
res.distributions.push_back({amount, slot.start_height, slot.distribution, slot.base});
|
||||||
found = true;
|
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;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue