tx_pool: fix crash in stats

if tx receive_time == now. supersedes #2322
pull/95/head
Howard Chu 7 years ago
parent 4466b6d1b0
commit ea15e72d73
No known key found for this signature in database
GPG Key ID: FD2A70B44AB11BA7

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

Loading…
Cancel
Save