mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-12-22 11:39:29 +00:00
skip processing payout tx if already published
This commit is contained in:
parent
adf7348515
commit
d64ee42154
1 changed files with 2 additions and 2 deletions
|
@ -94,8 +94,8 @@ public class ProcessPaymentReceivedMessage extends TradeTask {
|
|||
}
|
||||
trade.requestPersistence();
|
||||
|
||||
// process payout tx unless already unlocked
|
||||
if (!trade.isPayoutUnlocked()) processPayoutTx(message);
|
||||
// process payout tx unless already published
|
||||
if (!trade.isPayoutPublished()) processPayoutTx(message);
|
||||
|
||||
// close open disputes
|
||||
if (trade.isPayoutPublished() && trade.getDisputeState().ordinal() >= Trade.DisputeState.DISPUTE_REQUESTED.ordinal()) {
|
||||
|
|
Loading…
Reference in a new issue