mirror of
https://github.com/boldsuck/haveno.git
synced 2025-01-05 15:49:23 +00:00
only sync wallet if not published on dispute closed
This commit is contained in:
parent
487d371a2d
commit
17ac09fa4d
1 changed files with 4 additions and 2 deletions
|
@ -253,8 +253,10 @@ public final class ArbitrationManager extends DisputeManager<ArbitrationDisputeL
|
||||||
dispute.setDisputeResult(disputeResult);
|
dispute.setDisputeResult(disputeResult);
|
||||||
|
|
||||||
// sync and save wallet
|
// sync and save wallet
|
||||||
trade.syncWallet();
|
if (!trade.isPayoutPublished()) {
|
||||||
trade.saveWallet();
|
trade.syncWallet();
|
||||||
|
trade.saveWallet();
|
||||||
|
}
|
||||||
|
|
||||||
// attempt to sign and publish dispute payout tx if given and not already published
|
// attempt to sign and publish dispute payout tx if given and not already published
|
||||||
if (disputeClosedMessage.getUnsignedPayoutTxHex() != null && !trade.isPayoutPublished()) {
|
if (disputeClosedMessage.getUnsignedPayoutTxHex() != null && !trade.isPayoutPublished()) {
|
||||||
|
|
Loading…
Reference in a new issue