diff --git a/core/src/main/java/com/google/bitcoin/core/Wallet.java b/core/src/main/java/com/google/bitcoin/core/Wallet.java index d1685f0a..9d7f92af 100644 --- a/core/src/main/java/com/google/bitcoin/core/Wallet.java +++ b/core/src/main/java/com/google/bitcoin/core/Wallet.java @@ -2220,7 +2220,6 @@ public class Wallet implements Serializable, BlockChainListener { } List oldBlockHashes = new ArrayList(oldBlocks.size()); - List newBlockHashes = new ArrayList(newBlocks.size()); log.info("Old part of chain (top to bottom):"); for (StoredBlock b : oldBlocks) { log.info(" {}", b.getHeader().getHashAsString()); @@ -2229,7 +2228,6 @@ public class Wallet implements Serializable, BlockChainListener { log.info("New part of chain (top to bottom):"); for (StoredBlock b : newBlocks) { log.info(" {}", b.getHeader().getHashAsString()); - newBlockHashes.add(b.getHeader().getHash()); } // Avoid spuriously informing the user of wallet changes whilst we're re-organizing. This also prevents the