Skip to content

Commit

Permalink
Do not select payment account currencies by default
Browse files Browse the repository at this point in the history
  • Loading branch information
wp07e authored Jun 25, 2024
1 parent 7ebc1bf commit 7acba27
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ public final class AdvancedCashAccount extends PaymentAccount {

public AdvancedCashAccount() {
super(PaymentMethod.ADVANCED_CASH);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public final class CapitualAccount extends PaymentAccount {

public CapitualAccount() {
super(PaymentMethod.CAPITUAL);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}

@Override
Expand Down
1 change: 0 additions & 1 deletion core/src/main/java/haveno/core/payment/CashAppAccount.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public final class CashAppAccount extends PaymentAccount {

public CashAppAccount() {
super(PaymentMethod.CASH_APP);
tradeCurrencies.addAll(getSupportedCurrencies());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ public final class MoneyGramAccount extends PaymentAccount {

public MoneyGramAccount() {
super(PaymentMethod.MONEY_GRAM);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}

@Override
Expand Down
2 changes: 0 additions & 2 deletions core/src/main/java/haveno/core/payment/OKPayAccount.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ public final class OKPayAccount extends PaymentAccount {

public OKPayAccount() {
super(PaymentMethod.OK_PAY);

tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}

@Override
Expand Down
1 change: 0 additions & 1 deletion core/src/main/java/haveno/core/payment/PayPalAccount.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ public final class PayPalAccount extends PaymentAccount {

public PayPalAccount() {
super(PaymentMethod.PAYPAL);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}

@Override
Expand Down
1 change: 0 additions & 1 deletion core/src/main/java/haveno/core/payment/RevolutAccount.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public final class RevolutAccount extends PaymentAccount {

public RevolutAccount() {
super(PaymentMethod.REVOLUT);
tradeCurrencies.addAll(getSupportedCurrencies());
}

@Override
Expand Down
1 change: 0 additions & 1 deletion core/src/main/java/haveno/core/payment/UpholdAccount.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public final class UpholdAccount extends PaymentAccount {

public UpholdAccount() {
super(PaymentMethod.UPHOLD);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}

@Override
Expand Down

0 comments on commit 7acba27

Please sign in to comment.