Updated on 2026-08-14

This commit is contained in:
Tangem 2021-11-10 21:07:56 +03:00
parent ce6351f209
commit 5eb2c2e91f

View file

@ -122,7 +122,7 @@ class CurrenciesRepository(val context: Application) {
tokensAdapter.fromJson(bscTokensJson)!!.map { it.toToken() } +
tokensAdapter.fromJson(binanceTokensJson)!!.mapNotNull {
// temporary exclude Binance BEP-8 tokens
if (it.type != null && it.type != BINANCE_TOKEN_TYPE_BEP8) it.toToken() else null
if (it.type != null && it.type == BINANCE_TOKEN_TYPE_BEP8) null else it.toToken()
}
}