diff --git a/core/src/main/java/bisq/core/locale/CurrencyUtil.java b/core/src/main/java/bisq/core/locale/CurrencyUtil.java index a755a697..cdc78871 100644 --- a/core/src/main/java/bisq/core/locale/CurrencyUtil.java +++ b/core/src/main/java/bisq/core/locale/CurrencyUtil.java @@ -134,17 +134,9 @@ public class CurrencyUtil { public static List getMainCryptoCurrencies() { final List result = new ArrayList<>(); - result.add(new CryptoCurrency("XRC", "Bitcoin Rhodium")); - result.add(new CryptoCurrency("BEAM", "Beam")); - result.add(new CryptoCurrency("DASH", "Dash")); - result.add(new CryptoCurrency("DCR", "Decred")); - result.add(new CryptoCurrency("ETH", "Ether")); - result.add(new CryptoCurrency("GRIN", "Grin")); - result.add(new CryptoCurrency("L-BTC", "Liquid Bitcoin")); + result.add(new CryptoCurrency("BTC", "Bitcoin")); result.add(new CryptoCurrency("LTC", "Litecoin")); - result.add(new CryptoCurrency("XMR", "Monero")); - result.add(new CryptoCurrency("NMC", "Namecoin")); - result.add(new CryptoCurrency("SF", "Siafund")); + result.add(new CryptoCurrency("ETH", "Ether")); result.add(new CryptoCurrency("ZEC", "Zcash")); result.sort(TradeCurrency::compareTo);