mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-01-30 23:02:15 +00:00
Silence a newly noisy MemoryPool debug log, as we now expect to receive un-announced transactions in several cases (dep download, Bloom filtering)
This commit is contained in:
parent
8923af5785
commit
a39dfddead
@ -188,7 +188,9 @@ public class MemoryPool {
|
||||
return tx;
|
||||
}
|
||||
} else {
|
||||
log.info("{}: Provided with a downloaded transaction we didn't see announced yet: {}",
|
||||
// This often happens when we are downloading a Bloom filtered chain, or recursively downloading
|
||||
// dependencies of a relevant transaction (see Peer.downloadDependencies).
|
||||
log.debug("{}: Provided with a downloaded transaction we didn't see announced yet: {}",
|
||||
byPeer, tx.getHashAsString());
|
||||
entry = new Entry();
|
||||
entry.tx = new WeakTransactionReference(tx, referenceQueue);
|
||||
|
Loading…
Reference in New Issue
Block a user