adjust displayed currencies in desktop app

This commit is contained in:
woodser 2021-11-21 06:03:34 -05:00
parent f27e3e3d1a
commit b6a1d7c652

View File

@ -134,17 +134,9 @@ public class CurrencyUtil {
public static List<CryptoCurrency> getMainCryptoCurrencies() {
final List<CryptoCurrency> 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);