mirror of
https://git.wownero.com/wownero/wownero.git
synced 2025-03-13 17:56:38 +00:00
Fix #2164 histogram output
When there are more than 50txs, the timestamp for the last bin was printed incorrectly. Subtracting "now" was omitted by mistake in 3fc22e7b78ab1dd409de4f3e8f5bff27be19735b
This commit is contained in:
parent
605ad09a3e
commit
8db68a57f5
@ -966,7 +966,7 @@ bool t_rpc_command_executor::print_transaction_pool_stats() {
|
||||
denom = n-1;
|
||||
for (i=0; i<denom; i++)
|
||||
times[i] = i * numer / denom;
|
||||
times[i] = res.pool_stats.oldest;
|
||||
times[i] = now - res.pool_stats.oldest;
|
||||
} else
|
||||
{
|
||||
numer = now - res.pool_stats.oldest;
|
||||
|
Loading…
x
Reference in New Issue
Block a user