Merge pull request #2331

ea15e72d tx_pool: fix crash in stats (Howard Chu)
release-v0.11.0.0
Riccardo Spagni 7 years ago
commit b09e170344
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

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