show error message on error confirming payment sent

This commit is contained in:
woodser 2024-01-23 08:52:02 -05:00
parent 19d3e2853d
commit 7658b3a508

View File

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