Updated on 2026-08-14
This commit is contained in:
parent
ce6351f209
commit
5eb2c2e91f
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue