remove USDT-TRC20 from default main currencies (#1918)

This commit is contained in:
woodser 2025-08-14 20:52:29 -04:00 committed by GitHub
parent 348bfb7f38
commit 2045375f3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -207,7 +207,6 @@ public class CurrencyUtil {
result.add(new CryptoCurrency("TRX", "Tron"));
result.add(new CryptoCurrency("DAI-ERC20", "Dai Stablecoin"));
result.add(new CryptoCurrency("USDT-ERC20", "Tether USD"));
result.add(new CryptoCurrency("USDT-TRC20", "Tether USD"));
result.add(new CryptoCurrency("USDC-ERC20", "USD Coin"));
result.sort(TradeCurrency::compareTo);
return result;