fix polygon name (#1697)

Serhii committed Sep 23, 2024 at 19:17 UTC 17de9f16b87425885c39b52f392abe45ba9ff3a2
1 file changed +1
lib/exchange/provider/stealth_ex_exchange_provider.dart
+1
@@ -284,6 +284,7 @@ class StealthExExchangeProvider extends ExchangeProvider {
284
285 String _getName(CryptoCurrency currency) {
286 if (currency == CryptoCurrency.usdcEPoly) return 'usdce';
287 + if (currency == CryptoCurrency.maticpoly) return 'matic';
288 return currency.title.toLowerCase();
289 }
290