unfreeze txos if spent

This commit is contained in:
Craig Raw 2024-01-22 09:11:06 +02:00
parent 42f279e5e7
commit a436de319a

View file

@ -161,6 +161,10 @@ public class WalletNode extends Persistable implements Comparable<WalletNode> {
}
}
}
if(txo.isSpent() && txo.getStatus() == Status.FROZEN) {
txo.setStatus(null);
}
}
transactionOutputs.clear();