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 8e35f9f5..d1685f0a 100644 --- a/core/src/main/java/com/google/bitcoin/core/Wallet.java +++ b/core/src/main/java/com/google/bitcoin/core/Wallet.java @@ -2232,16 +2232,6 @@ public class Wallet implements Serializable, BlockChainListener { newBlockHashes.add(b.getHeader().getHash()); } - boolean affectedUs = false; - for (Sha256Hash hash : Iterables.concat(oldBlockHashes, newBlockHashes)) { - if (mapBlockTx.get(hash) != null) { - affectedUs = true; - break; - } - } - log.info(affectedUs ? "Re-org affected our transactions" : "Re-org had no effect on our transactions"); - if (!affectedUs) return; - // Avoid spuriously informing the user of wallet changes whilst we're re-organizing. This also prevents the // user from modifying wallet contents (eg, trying to spend) whilst we're in the middle of the process. onWalletChangedSuppressions++;