3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-07 23:03:04 +00:00

Don't dump entire block to log when a split happens.

This commit is contained in:
Mike Hearn 2013-03-21 16:42:34 +01:00
parent dd5e6f7151
commit df257e8589

View File

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