diff --git a/app/src/main/java/com/tangem/tap/features/customtoken/impl/domain/DefaultCustomTokenInteractor.kt b/app/src/main/java/com/tangem/tap/features/customtoken/impl/domain/DefaultCustomTokenInteractor.kt index a392516294..a74e4b8a66 100644 --- a/app/src/main/java/com/tangem/tap/features/customtoken/impl/domain/DefaultCustomTokenInteractor.kt +++ b/app/src/main/java/com/tangem/tap/features/customtoken/impl/domain/DefaultCustomTokenInteractor.kt @@ -175,7 +175,7 @@ class DefaultCustomTokenInteractor( is Currency.Blockchain -> { cryptoCurrencyFactory.createCoin( blockchain = currency.blockchain, - extraDerivationPath = null, + extraDerivationPath = currency.derivationPath, derivationStyleProvider = scanResponse.derivationStyleProvider, ) } @@ -183,7 +183,7 @@ class DefaultCustomTokenInteractor( cryptoCurrencyFactory.createToken( sdkToken = currency.token, blockchain = currency.blockchain, - extraDerivationPath = null, + extraDerivationPath = currency.derivationPath, derivationStyleProvider = scanResponse.derivationStyleProvider, ) }