mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Fix two more files related to #678
This commit is contained in:
parent
1e0dffb749
commit
6d0c191a99
2 changed files with 2 additions and 2 deletions
|
@ -269,7 +269,7 @@ abstract class BankForm extends PaymentMethodForm {
|
||||||
if (selectedItem != null) {
|
if (selectedItem != null) {
|
||||||
if (selectedItem.code.equals("US")) {
|
if (selectedItem.code.equals("US")) {
|
||||||
new Popup<>().information("Bank transfer with WIRE or ACH is not supported for the US because WIRE is too expensive and ACH has a high chargeback risk.\n\n" +
|
new Popup<>().information("Bank transfer with WIRE or ACH is not supported for the US because WIRE is too expensive and ACH has a high chargeback risk.\n\n" +
|
||||||
"Please use payment methods \"ClearXchange\", \"US Postal Money Order\" or \"Cash Deposit\" instead.")
|
"Please use payment methods \"ClearXchange\", \"US Postal Money Order\" or \"Cash/ATM Deposit\" instead.")
|
||||||
.onClose(() -> closeHandler.run())
|
.onClose(() -> closeHandler.run())
|
||||||
.show();
|
.show();
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -92,7 +92,7 @@ public class SellerStep3View extends TradeStepView {
|
||||||
"The trade ID (\"reason for payment\" text) of the transaction is: \"" + trade.getShortId() + "\"";
|
"The trade ID (\"reason for payment\" text) of the transaction is: \"" + trade.getShortId() + "\"";
|
||||||
|
|
||||||
if (paymentAccountContractData instanceof CashDepositAccountContractData)
|
if (paymentAccountContractData instanceof CashDepositAccountContractData)
|
||||||
message += "\n\nBecause the payment is done via Cash Deposit the BTC buyer has to write \"NO REFUND\" " +
|
message += "\n\nBecause the payment is done via Cash/ATM Deposit the BTC buyer has to write \"NO REFUND\" " +
|
||||||
"on the paper receipt, tear it in 2 parts and send you a photo by email.\n\n" +
|
"on the paper receipt, tear it in 2 parts and send you a photo by email.\n\n" +
|
||||||
"To avoid chargeback risk, only confirm if you received the email and if you are " +
|
"To avoid chargeback risk, only confirm if you received the email and if you are " +
|
||||||
"sure the paper receipt is valid.\n" +
|
"sure the paper receipt is valid.\n" +
|
||||||
|
|
Loading…
Add table
Reference in a new issue