Skip to content

Commit

Permalink
Don't warn when mempool entry is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
romanz committed Oct 28, 2024
1 parent 576f2e9 commit da934fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mempool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
};
Expand Down

0 comments on commit da934fb

Please sign in to comment.