mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-17 00:07:49 +00:00
show 'preparing confirmation' on payment sent/received clicked
This commit is contained in:
parent
adccf27385
commit
d0a25d7d5b
2 changed files with 2 additions and 2 deletions
|
@ -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(() -> {
|
||||
|
|
|
@ -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(() -> {
|
||||
|
|
Loading…
Reference in a new issue