mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-09 07:02:24 -04:00
cannot open dispute until both deposits confirmed and available
This commit is contained in:
parent
e85682e635
commit
f13e1ec610
2 changed files with 14 additions and 10 deletions
|
@ -273,8 +273,12 @@ public abstract class TradeStepView extends AnchorPane {
|
|||
}
|
||||
|
||||
private void openSupportTicket() {
|
||||
applyOnDisputeOpened();
|
||||
model.dataModel.onOpenDispute();
|
||||
if (trade.getPhase().ordinal() < Trade.Phase.DEPOSITS_UNLOCKED.ordinal()) {
|
||||
new Popup().warning(Res.get("portfolio.pending.error.depositTxNotConfirmed")).show();
|
||||
} else {
|
||||
applyOnDisputeOpened();
|
||||
model.dataModel.onOpenDispute();
|
||||
}
|
||||
}
|
||||
|
||||
private void openChat() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue