mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-12-22 19:49:32 +00:00
Do not select payment account currencies by default
Some checks failed
CodeQL / Analyze (java) (push) Has been cancelled
CI / build (macos-13) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
Codacy Coverage Reporter / Publish coverage (push) Has been cancelled
Some checks failed
CodeQL / Analyze (java) (push) Has been cancelled
CI / build (macos-13) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
Codacy Coverage Reporter / Publish coverage (push) Has been cancelled
This commit is contained in:
parent
7ebc1bfc11
commit
7acba27b9d
8 changed files with 0 additions and 9 deletions
|
@ -42,7 +42,6 @@ public final class AdvancedCashAccount extends PaymentAccount {
|
||||||
|
|
||||||
public AdvancedCashAccount() {
|
public AdvancedCashAccount() {
|
||||||
super(PaymentMethod.ADVANCED_CASH);
|
super(PaymentMethod.ADVANCED_CASH);
|
||||||
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -40,7 +40,6 @@ public final class CapitualAccount extends PaymentAccount {
|
||||||
|
|
||||||
public CapitualAccount() {
|
public CapitualAccount() {
|
||||||
super(PaymentMethod.CAPITUAL);
|
super(PaymentMethod.CAPITUAL);
|
||||||
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -43,7 +43,6 @@ public final class CashAppAccount extends PaymentAccount {
|
||||||
|
|
||||||
public CashAppAccount() {
|
public CashAppAccount() {
|
||||||
super(PaymentMethod.CASH_APP);
|
super(PaymentMethod.CASH_APP);
|
||||||
tradeCurrencies.addAll(getSupportedCurrencies());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -100,7 +100,6 @@ public final class MoneyGramAccount extends PaymentAccount {
|
||||||
|
|
||||||
public MoneyGramAccount() {
|
public MoneyGramAccount() {
|
||||||
super(PaymentMethod.MONEY_GRAM);
|
super(PaymentMethod.MONEY_GRAM);
|
||||||
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -61,8 +61,6 @@ public final class OKPayAccount extends PaymentAccount {
|
||||||
|
|
||||||
public OKPayAccount() {
|
public OKPayAccount() {
|
||||||
super(PaymentMethod.OK_PAY);
|
super(PaymentMethod.OK_PAY);
|
||||||
|
|
||||||
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -66,7 +66,6 @@ public final class PayPalAccount extends PaymentAccount {
|
||||||
|
|
||||||
public PayPalAccount() {
|
public PayPalAccount() {
|
||||||
super(PaymentMethod.PAYPAL);
|
super(PaymentMethod.PAYPAL);
|
||||||
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -74,7 +74,6 @@ public final class RevolutAccount extends PaymentAccount {
|
||||||
|
|
||||||
public RevolutAccount() {
|
public RevolutAccount() {
|
||||||
super(PaymentMethod.REVOLUT);
|
super(PaymentMethod.REVOLUT);
|
||||||
tradeCurrencies.addAll(getSupportedCurrencies());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -69,7 +69,6 @@ public final class UpholdAccount extends PaymentAccount {
|
||||||
|
|
||||||
public UpholdAccount() {
|
public UpholdAccount() {
|
||||||
super(PaymentMethod.UPHOLD);
|
super(PaymentMethod.UPHOLD);
|
||||||
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue