mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-11-30 08:26:41 -05:00
support wise usd payment account over grpc api
This commit is contained in:
parent
59e509d3e3
commit
3e9a55d784
7 changed files with 40 additions and 17 deletions
|
|
@ -57,7 +57,7 @@ public class TransferwiseUsdForm extends PaymentMethodForm {
|
|||
addCompactTopLabelTextFieldWithCopyIcon(gridPane, ++gridRow, 1, Res.get("payment.email"),
|
||||
((TransferwiseUsdAccountPayload) paymentAccountPayload).getEmail());
|
||||
|
||||
String address = ((TransferwiseUsdAccountPayload) paymentAccountPayload).getBeneficiaryAddress();
|
||||
String address = ((TransferwiseUsdAccountPayload) paymentAccountPayload).getHolderAddress();
|
||||
if (address.length() > 0) {
|
||||
TextArea textAddress = addCompactTopLabelTextArea(gridPane, gridRow, 0, Res.get("payment.account.address"), "").second;
|
||||
textAddress.setMinHeight(70);
|
||||
|
|
@ -96,7 +96,7 @@ public class TransferwiseUsdForm extends PaymentMethodForm {
|
|||
updateFromInputs();
|
||||
});
|
||||
|
||||
String addressLabel = Res.get("payment.account.owner.address") + Res.get("payment.transferwiseUsd.address");
|
||||
String addressLabel = Res.get("payment.account.owner.address") + " " + Res.get("payment.transferwiseUsd.address");
|
||||
TextArea addressTextArea = addTopLabelTextArea(gridPane, ++gridRow, addressLabel, addressLabel).second;
|
||||
addressTextArea.setMinHeight(70);
|
||||
addressTextArea.textProperty().addListener((ov, oldValue, newValue) -> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue