mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
rpc: convert distribution to cumulative after caching
This avoids double conversion on a later cache hit
This commit is contained in:
parent
7b033b1670
commit
36deb5d509
1 changed files with 7 additions and 6 deletions
|
@ -2117,12 +2117,6 @@ namespace cryptonote
|
||||||
if (offset <= req.to_height && req.to_height - offset + 1 < distribution.size())
|
if (offset <= req.to_height && req.to_height - offset + 1 < distribution.size())
|
||||||
distribution.resize(req.to_height - offset + 1);
|
distribution.resize(req.to_height - offset + 1);
|
||||||
}
|
}
|
||||||
if (req.cumulative)
|
|
||||||
{
|
|
||||||
distribution[0] += base;
|
|
||||||
for (size_t n = 1; n < distribution.size(); ++n)
|
|
||||||
distribution[n] += distribution[n-1];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (amount == 0)
|
if (amount == 0)
|
||||||
{
|
{
|
||||||
|
@ -2134,6 +2128,13 @@ namespace cryptonote
|
||||||
d.cached = true;
|
d.cached = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (req.cumulative)
|
||||||
|
{
|
||||||
|
distribution[0] += base;
|
||||||
|
for (size_t n = 1; n < distribution.size(); ++n)
|
||||||
|
distribution[n] += distribution[n-1];
|
||||||
|
}
|
||||||
|
|
||||||
res.distributions.push_back({amount, start_height, std::move(distribution), base});
|
res.distributions.push_back({amount, start_height, std::move(distribution), base});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue