show 'preparing confirmation' on payment sent/received clicked

This commit is contained in:
woodser 2024-04-21 12:58:25 -04:00
parent adccf27385
commit d0a25d7d5b
2 changed files with 2 additions and 2 deletions

View file

@ -580,7 +580,7 @@ public class BuyerStep2View extends TradeStepView {
private void confirmPaymentSent() {
busyAnimation.play();
statusLabel.setText(Res.get("shared.sendingConfirmation"));
statusLabel.setText(Res.get("shared.preparingConfirmation"));
confirmButton.setDisable(true);
model.dataModel.onPaymentSent(() -> {

View file

@ -442,7 +442,7 @@ public class SellerStep3View extends TradeStepView {
private void confirmPaymentReceived() {
log.info("User pressed the [Confirm payment receipt] button for Trade {}", trade.getShortId());
busyAnimation.play();
statusLabel.setText(Res.get("shared.sendingConfirmation"));
statusLabel.setText(Res.get("shared.preparingConfirmation"));
confirmButton.setDisable(true);
model.dataModel.onPaymentReceived(() -> {