Updated on 2026-08-14

This commit is contained in:
Tangem 2023-12-05 12:47:48 +03:00
parent bdf42f778f
commit f33ada0352
8 changed files with 41 additions and 5 deletions

View file

@ -15,7 +15,7 @@ class DefaultMarketCryptoCurrencyRepository(
return assetsStore.getSyncOrNull(userWalletId)?.find {
it.network == cryptoCurrency.network.backendId &&
it.contractAddress == contractAddress
it.contractAddress.equals(contractAddress, ignoreCase = true)
}?.exchangeAvailable ?: false
}
}