mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-02 10:16:44 +00:00
unfreeze txos if spent
This commit is contained in:
parent
42f279e5e7
commit
a436de319a
1 changed files with 4 additions and 0 deletions
|
@ -161,6 +161,10 @@ public class WalletNode extends Persistable implements Comparable<WalletNode> {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(txo.isSpent() && txo.getStatus() == Status.FROZEN) {
|
||||
txo.setStatus(null);
|
||||
}
|
||||
}
|
||||
|
||||
transactionOutputs.clear();
|
||||
|
|
Loading…
Reference in a new issue