show error message on error confirming payment received

This commit is contained in:
woodser 2024-07-12 14:36:14 -04:00
parent b0c73d1b39
commit 9747b20a27

View file

@ -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."));
}); });