Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-14 19:54:34 +04:00
parent 66efd406cc
commit 90fea21f17
14 changed files with 103 additions and 398 deletions

View file

@ -33,7 +33,7 @@ internal class SendBalanceUpdater @AssistedInject constructor(
async {
fetchPendingTransactionsUseCase(
userWalletId = userWallet.walletId,
networks = setOf(cryptoCurrency.network),
network = cryptoCurrency.network,
)
},
// we should update tx history and network for new balances

View file

@ -1037,7 +1037,10 @@ internal class SendModel @Inject constructor(
listOf(
// we should update network to find pending tx after 1 sec
async {
fetchPendingTransactionsUseCase(userWallet.walletId, setOf(cryptoCurrency.network))
fetchPendingTransactionsUseCase(
userWalletId = userWallet.walletId,
network = cryptoCurrency.network,
)
},
// we should update tx history and network for new balance
async {

View file

@ -42,7 +42,7 @@ internal class StakingBalanceUpdater @AssistedInject constructor(
async {
fetchPendingTransactionsUseCase(
userWalletId = userWallet.walletId,
networks = setOf(cryptoCurrencyStatus.currency.network),
network = cryptoCurrencyStatus.currency.network,
)
},
// we should update tx history and network for new balances