From 88f26f93241af698ae689bf081205d0f9dc929fa Mon Sep 17 00:00:00 2001 From: chimp1984 Date: Sun, 13 Dec 2020 23:50:28 -0500 Subject: [PATCH] Do not autofill all currencies by default but keep all unselected. --- core/src/main/java/bisq/core/payment/TransferwiseAccount.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/src/main/java/bisq/core/payment/TransferwiseAccount.java b/core/src/main/java/bisq/core/payment/TransferwiseAccount.java index 5d84a25901..50a3379c4a 100644 --- a/core/src/main/java/bisq/core/payment/TransferwiseAccount.java +++ b/core/src/main/java/bisq/core/payment/TransferwiseAccount.java @@ -17,7 +17,6 @@ package bisq.core.payment; -import bisq.core.locale.CurrencyUtil; import bisq.core.payment.payload.PaymentAccountPayload; import bisq.core.payment.payload.PaymentMethod; import bisq.core.payment.payload.TransferwiseAccountPayload; @@ -28,8 +27,6 @@ import lombok.EqualsAndHashCode; public final class TransferwiseAccount extends PaymentAccount { public TransferwiseAccount() { super(PaymentMethod.TRANSFERWISE); - - tradeCurrencies.addAll(CurrencyUtil.getAllTransferwiseCurrencies()); } @Override