Updated on 2026-08-14

This commit is contained in:
Tangem 2024-02-06 17:58:35 +03:00
parent 3968f4659c
commit 023ed0924b

View file

@ -36,7 +36,7 @@ internal class MercuryoService(private val environment: MercuryoEnvironment) : E
val availableCurrency = availableMercuryoCurrencies.firstOrNull {
it.currencySymbol == currency.currencySymbol &&
it.network == mercuryoNetwork &&
it.contractAddress == contractAddress
it.contractAddress.equals(contractAddress, ignoreCase = true)
}
return availableCurrency != null
}