mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 22:58:32 +01:00
Don't output an info log for every block downloaded.
This commit is contained in:
parent
212faf078c
commit
5114e6ccec
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ public class BlockChain {
|
||||||
if (storedPrev.equals(chainHead)) {
|
if (storedPrev.equals(chainHead)) {
|
||||||
// This block connects to the best known block, it is a normal continuation of the system.
|
// This block connects to the best known block, it is a normal continuation of the system.
|
||||||
setChainHead(newStoredBlock);
|
setChainHead(newStoredBlock);
|
||||||
log.info("Chain is now {} blocks high", chainHead.getHeight());
|
log.trace("Chain is now {} blocks high", chainHead.getHeight());
|
||||||
if (newTransactions != null)
|
if (newTransactions != null)
|
||||||
sendTransactionsToWallet(newStoredBlock, NewBlockType.BEST_CHAIN, newTransactions);
|
sendTransactionsToWallet(newStoredBlock, NewBlockType.BEST_CHAIN, newTransactions);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue