Updated on 2026-08-14

This commit is contained in:
Tangem 2023-12-01 18:21:11 +04:00
parent 2e58f4ec40
commit 278351fa8a

View file

@ -10,7 +10,6 @@ import com.tangem.domain.walletmanager.model.CryptoCurrencyTransaction
import com.tangem.domain.walletmanager.model.UpdateWalletManagerResult
import timber.log.Timber
import java.math.BigDecimal
import java.util.concurrent.TimeUnit
import com.tangem.blockchain.common.address.Address as SdkAddress
internal class UpdateWalletManagerResultFactory {
@ -125,7 +124,7 @@ internal class UpdateWalletManagerResultFactory {
return TxHistoryItem(
txHash = hash,
timestampInMillis = TimeUnit.SECONDS.toMillis(millis),
timestampInMillis = millis,
isOutgoing = isOutgoing,
destinationType = TxHistoryItem.DestinationType.Single(
TxHistoryItem.AddressType.User(data.destinationAddress),