diff --git a/src/mempool.rs b/src/mempool.rs index 8522ce64..72b15329 100644 --- a/src/mempool.rs +++ b/src/mempool.rs @@ -85,14 +85,14 @@ impl MempoolSyncUpdate { let entry = match entry { Some(entry) => entry, None => { - warn!("missing mempool entry: {}", txid); + debug!("missing mempool entry: {}", txid); return None; } }; let tx = match tx { Some(tx) => tx, None => { - warn!("missing mempool tx: {}", txid); + debug!("missing mempool tx: {}", txid); return None; } };