From da934fb5394139c2097f4d4efe109376c754e9e6 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Mon, 28 Oct 2024 21:44:31 +0200 Subject: [PATCH] Don't warn when mempool entry is missing --- src/mempool.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } };