tx_pool: fix crash in stats

if tx receive_time == now. supersedes #2322
This commit is contained in:
Howard Chu 2017-08-23 14:19:38 +01:00
parent 4466b6d1b0
commit ea15e72d73
No known key found for this signature in database
GPG key ID: FD2A70B44AB11BA7

View file

@ -575,7 +575,7 @@ namespace cryptonote
stats.num_10m++;
if (meta.last_failed_height)
stats.num_failing++;
uint64_t age = now - meta.receive_time;
uint64_t age = now - meta.receive_time + (now == meta.receive_time);
agebytes[age].txs++;
agebytes[age].bytes += meta.blob_size;
return true;