mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-12-23 03:59:36 +00:00
only import multisig hex on dispute closed if wallet exists after sync
This commit is contained in:
parent
ed0f458bc4
commit
1809e34aaa
1 changed files with 6 additions and 4 deletions
|
@ -251,16 +251,18 @@ public final class ArbitrationManager extends DisputeManager<ArbitrationDisputeL
|
||||||
}
|
}
|
||||||
dispute.setDisputeResult(disputeResult);
|
dispute.setDisputeResult(disputeResult);
|
||||||
|
|
||||||
// import multisig hex
|
|
||||||
if (disputeClosedMessage.getUpdatedMultisigHex() != null) trade.getArbitrator().setUpdatedMultisigHex(disputeClosedMessage.getUpdatedMultisigHex());
|
|
||||||
trade.importMultisigHex();
|
|
||||||
|
|
||||||
// sync and save wallet
|
// sync and save wallet
|
||||||
if (!trade.isPayoutPublished()) {
|
if (!trade.isPayoutPublished()) {
|
||||||
trade.syncWallet();
|
trade.syncWallet();
|
||||||
trade.saveWallet();
|
trade.saveWallet();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// import multisig hex
|
||||||
|
if (trade.walletExists()) {
|
||||||
|
if (disputeClosedMessage.getUpdatedMultisigHex() != null) trade.getArbitrator().setUpdatedMultisigHex(disputeClosedMessage.getUpdatedMultisigHex());
|
||||||
|
trade.importMultisigHex();
|
||||||
|
}
|
||||||
|
|
||||||
// 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