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
release-v0.4.0.1
Howard Chu 7 years ago
parent 605ad09a3e
commit 8db68a57f5
No known key found for this signature in database
GPG Key ID: FD2A70B44AB11BA7

@ -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…
Cancel
Save