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

Don't warn when mempool entry is missing

This commit is contained in:
Roman Zeyde 2024-10-28 21:44:31 +02:00
parent 576f2e9ad7
commit da934fb539

View File

@ -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;
}
};