Updated on 2026-08-14

This commit is contained in:
Tangem 2023-08-04 18:05:52 +03:00
parent ce57171f3b
commit b3b0f92ac1
4 changed files with 6 additions and 6 deletions

View file

@ -40,7 +40,7 @@ class TxHistoryManagerImpl(
)
return when (itemsResult) {
is Result.Success -> itemsResult.data.map { historyItem -> historyItem.mapToProxy() }
is Result.Success -> itemsResult.data.items.map { historyItem -> historyItem.mapToProxy() }
is Result.Failure -> error(itemsResult.error.message ?: itemsResult.error.customMessage)
}
}