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

@ -1 +1 @@
Subproject commit 8c1c53b73950698d4acfa4d925b8c14bf6f0da63
Subproject commit b791bd4cf6c5eca9778f89e87cd62b72d24f5ce9

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)
}
}