mirror of
https://github.com/boldsuck/haveno.git
synced 2024-12-22 12:09:22 +00:00
show error message on error confirming payment received
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(() -> {
|
||||
}, errorMessage -> {
|
||||
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());
|
||||
UserThread.execute(() -> statusLabel.setText("Error confirming payment received."));
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue