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:
Howard Chu 2017-07-10 15:47:10 +01:00
parent 605ad09a3e
commit 8db68a57f5
No known key found for this signature in database
GPG key ID: FD2A70B44AB11BA7

View file

@ -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;