remove zec from main currency list

This commit is contained in:
woodser 2022-08-17 13:23:11 -04:00
parent 526a1b5f37
commit 69899c8750

View File

@ -147,7 +147,6 @@ public class CurrencyUtil {
result.add(new CryptoCurrency("BCH", "Bitcoin Cash"));
result.add(new CryptoCurrency("ETH", "Ether"));
result.add(new CryptoCurrency("LTC", "Litecoin"));
result.add(new CryptoCurrency("ZEC", "Zcash"));
result.sort(TradeCurrency::compareTo);
return result;
}