mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 22:58:32 +01:00
Don't dump entire block to log when a split happens.
This commit is contained in:
parent
dd5e6f7151
commit
df257e8589
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ public abstract class AbstractBlockChain {
|
|||
int splitPointHeight = splitPoint.getHeight();
|
||||
String splitPointHash = splitPoint.getHeader().getHashAsString();
|
||||
log.info("Block forks the chain at height {}/block {}, but it did not cause a reorganize:\n{}",
|
||||
new Object[]{splitPointHeight, splitPointHash, newBlock});
|
||||
new Object[]{splitPointHeight, splitPointHash, newBlock.getHeader().getHashAsString()});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue