mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-02-08 18:58:40 -05:00
update buyer seller step view even if error
This commit is contained in:
parent
fd69f4250b
commit
a03941817e
@ -150,7 +150,6 @@ public class BuyerStep2View extends TradeStepView {
|
||||
if (trade.isDepositsUnlocked() && !trade.isPaymentSent()) {
|
||||
showPopup();
|
||||
} else if (state.ordinal() <= Trade.State.BUYER_SEND_FAILED_PAYMENT_SENT_MSG.ordinal()) {
|
||||
if (!trade.hasFailed()) {
|
||||
switch (state) {
|
||||
case BUYER_CONFIRMED_IN_UI_PAYMENT_SENT:
|
||||
busyAnimation.play();
|
||||
@ -187,10 +186,6 @@ public class BuyerStep2View extends TradeStepView {
|
||||
statusLabel.setText(Res.get("shared.sendingConfirmationAgain"));
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
log.warn("Trade contains error message {}", trade.getErrorMessage());
|
||||
statusLabel.setText("");
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -114,7 +114,6 @@ public class SellerStep3View extends TradeStepView {
|
||||
if (trade.isPaymentSent() && !trade.isPaymentReceived()) {
|
||||
showPopup();
|
||||
} else if (trade.isPaymentReceived()) {
|
||||
if (!trade.hasFailed()) {
|
||||
switch (state) {
|
||||
case SELLER_CONFIRMED_IN_UI_PAYMENT_RECEIPT:
|
||||
busyAnimation.play();
|
||||
@ -153,10 +152,6 @@ public class SellerStep3View extends TradeStepView {
|
||||
statusLabel.setText(Res.get("shared.sendingConfirmationAgain"));
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
log.warn("Trade contains error message {}", trade.getErrorMessage());
|
||||
statusLabel.setText("");
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user