Updated on 2026-08-14
This commit is contained in:
parent
645ff10ede
commit
a29fdb62e1
1 changed files with 3 additions and 1 deletions
|
|
@ -144,7 +144,9 @@ class UserWalletManagerImpl(
|
|||
val card = requireNotNull(appStateHolder.getActualCard()) { "card not found" }
|
||||
val blockchainNetwork = BlockchainNetwork(blockchain, card)
|
||||
val walletManager = appStateHolder.walletState?.getWalletManager(blockchainNetwork)
|
||||
return walletManager?.wallet?.recentTransactions?.lastOrNull()?.hash?.let { HEX_PREFIX + it }
|
||||
return walletManager?.wallet?.recentTransactions
|
||||
?.lastOrNull { it.hash?.isNotEmpty() == true }
|
||||
?.hash?.let { HEX_PREFIX + it }
|
||||
}
|
||||
|
||||
override suspend fun getCurrentWalletTokensBalance(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue