1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00

Remove periodic mempool size logging

This commit is contained in:
Roman Zeyde 2018-08-15 08:50:59 +03:00
parent fc8656f7a4
commit a8a5772b26
No known key found for this signature in database
GPG Key ID: 87CAE5FA46917CBB

View File

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