mirror of
https://github.com/romanz/electrs.git
synced 2024-11-19 09:54:09 +01:00
Reduce log verbosity for missing mempool transactions
This commit is contained in:
parent
33aaf7ddc6
commit
39111665d0
@ -208,7 +208,7 @@ impl Tracker {
|
|||||||
match daemon.getmempoolentry(txid) {
|
match daemon.getmempoolentry(txid) {
|
||||||
Ok(entry) => Some((txid, entry)),
|
Ok(entry) => Some((txid, entry)),
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
warn!("no mempool entry {}: {}", txid, err); // e.g. new block or RBF
|
debug!("no mempool entry {}: {}", txid, err); // e.g. new block or RBF
|
||||||
None // ignore this transaction for now
|
None // ignore this transaction for now
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -219,7 +219,7 @@ impl Tracker {
|
|||||||
let txs = match daemon.gettransactions(&txids) {
|
let txs = match daemon.gettransactions(&txids) {
|
||||||
Ok(txs) => txs,
|
Ok(txs) => txs,
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
warn!("failed to get transactions {:?}: {}", txids, err); // e.g. new block or RBF
|
debug!("failed to get transactions {:?}: {}", txids, err); // e.g. new block or RBF
|
||||||
return Ok(()); // keep the mempool until next update()
|
return Ok(()); // keep the mempool until next update()
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user