Updated on 2026-08-14
This commit is contained in:
parent
5dba95e1ca
commit
788147acb0
1 changed files with 3 additions and 1 deletions
|
|
@ -34,7 +34,9 @@ data class WalletData(
|
|||
}
|
||||
|
||||
fun isAvailableToSwap(swapInteractor: SwapInteractor, isExchangeFeatureOn: Boolean): Boolean {
|
||||
return swapInteractor.isAvailableToSwap(currency.blockchain.toNetworkId()) && isExchangeFeatureOn
|
||||
return swapInteractor.isAvailableToSwap(currency.blockchain.toNetworkId()) &&
|
||||
isExchangeFeatureOn &&
|
||||
!currency.isCustomCurrency(null)
|
||||
}
|
||||
|
||||
fun getAvailableActions(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue