From 7f7d43d3720bf94b1a1abcc804b93a8cb3aac368 Mon Sep 17 00:00:00 2001 From: Dario Gabriel Lipicar Date: Wed, 29 Mar 2023 12:41:42 -0300 Subject: [PATCH] fix(@desktop/wallet): lower collectibles chunk size to improve app response time Part of #10063 --- src/app_service/service/collectible/service.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app_service/service/collectible/service.nim b/src/app_service/service/collectible/service.nim index b8237666af8..3ccd48bfe64 100644 --- a/src/app_service/service/collectible/service.nim +++ b/src/app_service/service/collectible/service.nim @@ -27,7 +27,7 @@ const SIGNAL_COLLECTIBLES_UPDATED* = "collectiblesUpdated" const INVALID_TIMESTAMP* = fromUnix(0) # Maximum number of owned collectibles to be fetched at a time -const ownedCollectiblesFetchLimit = 200 +const ownedCollectiblesFetchLimit = 100 type OwnedCollectiblesUpdateArgs* = ref object of Args