mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-25 15:10:18 +01:00
Wallet: don't call killTx if it has no work to do, cleans up a misleading log line.
This commit is contained in:
parent
434f7d003a
commit
857b34fcee
1 changed files with 1 additions and 1 deletions
|
@ -741,7 +741,7 @@ public class Wallet implements Serializable, BlockChainListener, PeerFilterProvi
|
|||
}
|
||||
}
|
||||
}
|
||||
if (takeAction) {
|
||||
if (takeAction && !doubleSpentTxns.isEmpty()) {
|
||||
killTx(tx, doubleSpentTxns);
|
||||
}
|
||||
return !doubleSpentTxns.isEmpty();
|
||||
|
|
Loading…
Add table
Reference in a new issue