mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-17 00:07:49 +00:00
show error message on error confirming payment received
Some checks are pending
Some checks are pending
This commit is contained in:
parent
b0c73d1b39
commit
9747b20a27
1 changed files with 1 additions and 1 deletions
|
@ -450,7 +450,7 @@ public class SellerStep3View extends TradeStepView {
|
||||||
model.dataModel.onPaymentReceived(() -> {
|
model.dataModel.onPaymentReceived(() -> {
|
||||||
}, errorMessage -> {
|
}, errorMessage -> {
|
||||||
busyAnimation.stop();
|
busyAnimation.stop();
|
||||||
new Popup().warning(Res.get("popup.warning.sendMsgFailed")).show();
|
new Popup().warning(Res.get("popup.warning.sendMsgFailed") + "\n\n" + errorMessage).show();
|
||||||
confirmButton.setDisable(!confirmPaymentReceivedPermitted());
|
confirmButton.setDisable(!confirmPaymentReceivedPermitted());
|
||||||
UserThread.execute(() -> statusLabel.setText("Error confirming payment received."));
|
UserThread.execute(() -> statusLabel.setText("Error confirming payment received."));
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue