3
0
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:
Mike Hearn 2013-01-16 13:20:55 +01:00
parent 8923af5785
commit a39dfddead

View File

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