mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +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 3fc22e7b78
This commit is contained in:
parent
605ad09a3e
commit
8db68a57f5
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue