Updated on 2026-08-14

This commit is contained in:
Tangem 2023-08-30 10:54:36 +03:00
parent e1a8068204
commit 13c1db212e
4 changed files with 12 additions and 10 deletions

View file

@ -127,7 +127,7 @@ class DefaultCustomTokenInteractor(
val bothCandidates = (manageTokensCandidates + customTokensCandidates).distinct().toMutableList()
if (bothCandidates.isEmpty()) return null
currencyList.find { it is Currency.Blockchain && it.blockchain == Blockchain.Cardano } ?.let { currency ->
currencyList.find { it is Currency.Blockchain && it.blockchain == Blockchain.Cardano }?.let { currency ->
currency.derivationPath?.let {
bothCandidates.add(CardanoUtils.extendedDerivationPath(DerivationPath(it)))
}