From 278351fa8ad625fb3ebf115c67f9fb812bb6322d Mon Sep 17 00:00:00 2001 From: Tangem Date: Fri, 1 Dec 2023 18:21:11 +0400 Subject: [PATCH] Updated on 2026-08-14 --- .../walletmanager/utils/UpdateWalletManagerResultFactory.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/domain/legacy/src/main/java/com/tangem/domain/walletmanager/utils/UpdateWalletManagerResultFactory.kt b/domain/legacy/src/main/java/com/tangem/domain/walletmanager/utils/UpdateWalletManagerResultFactory.kt index 4a67053404..e865fcc408 100644 --- a/domain/legacy/src/main/java/com/tangem/domain/walletmanager/utils/UpdateWalletManagerResultFactory.kt +++ b/domain/legacy/src/main/java/com/tangem/domain/walletmanager/utils/UpdateWalletManagerResultFactory.kt @@ -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),