Browse Source

Remove periodic mempool size logging

refactor-mempool
Roman Zeyde 7 years ago
parent
commit
a8a5772b26
No known key found for this signature in database GPG Key ID: 87CAE5FA46917CBB
  1. 5
      src/mempool.rs

5
src/mempool.rs

@ -194,11 +194,6 @@ impl Tracker {
.getmempooltxids()
.chain_err(|| "failed to update mempool from daemon")?;
let old_txids = HashSet::from_iter(self.items.keys().cloned());
trace!(
"{} transactions in mempool ({:+})",
new_txids.len(),
new_txids.len() as i64 - old_txids.len() as i64
);
timer.observe_duration();
let timer = self.stats.start_timer("add");

Loading…
Cancel
Save