diff --git a/core/src/main/java/com/google/bitcoin/core/AbstractBlockChain.java b/core/src/main/java/com/google/bitcoin/core/AbstractBlockChain.java index 05a7f18c..b02b551c 100644 --- a/core/src/main/java/com/google/bitcoin/core/AbstractBlockChain.java +++ b/core/src/main/java/com/google/bitcoin/core/AbstractBlockChain.java @@ -414,7 +414,7 @@ public abstract class AbstractBlockChain { if (filtered && filteredTxn.size() > 0) { // Some temp debug logging to try and track down where transactions are going missing. log.info("Block {} connects to top of best chain with {} transaction(s)", - block.getHashAsString(), filteredTxn.size() + filteredTxHashList.size()); + block.getHashAsString(), filteredTxn.size()); for (Sha256Hash hash : filteredTxHashList) log.info(" matched tx {}", hash); } if (expensiveChecks && block.getTimeSeconds() <= getMedianTimestampOfRecentBlocks(head, blockStore))