mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-12-22 19:49:32 +00:00
show error message on error confirming payment sent
This commit is contained in:
parent
19d3e2853d
commit
7658b3a508
1 changed files with 1 additions and 1 deletions
|
@ -579,7 +579,7 @@ public class BuyerStep2View extends TradeStepView {
|
|||
model.dataModel.onPaymentSent(() -> {
|
||||
}, 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(!confirmPaymentSentPermitted());
|
||||
UserThread.execute(() -> statusLabel.setText("Error confirming payment sent."));
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue