Updated on 2026-08-14

This commit is contained in:
Tangem 2023-02-07 10:56:56 +03:00
parent e4e6499d4d
commit e5876470de
4 changed files with 11 additions and 10 deletions

View file

@ -144,7 +144,7 @@ class SingleWalletView : WalletView() {
WalletAction.DialogAction.ChooseTradeActionDialog(
buyAllowed = walletData.isAvailableToBuy(exchangeManager),
sellAllowed = walletData.isAvailableToSell(exchangeManager),
swapAllowed = false, //always disable for single wallet
swapAllowed = false, // always disable for single wallet
),
)
}

View file

@ -102,7 +102,6 @@ class UserWalletManagerImpl(
}
val mainStore = requireNotNull(appStateHolder.mainStore) { "mainStore is null" }
mainStore.dispatchOnMain(action)
mainStore.dispatchOnMain(WalletAction.LoadData.Refresh)
}
override fun getWalletAddress(networkId: String): String {