From 567c200df2e47a35815cef876f72eb60587bc583 Mon Sep 17 00:00:00 2001 From: user Date: Fri, 5 Apr 2024 23:31:06 +0300 Subject: [PATCH] fix timeout --- app/core/models/user/wallet_mixin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/models/user/wallet_mixin.py b/app/core/models/user/wallet_mixin.py index adb4293..5b80d43 100644 --- a/app/core/models/user/wallet_mixin.py +++ b/app/core/models/user/wallet_mixin.py @@ -31,7 +31,7 @@ class WalletMixin: return response.json()['nft_items'] except BaseException as e: make_log(self, f"Error while fetching NFTs: {e}", level='error') - await asyncio.sleep(2) + await asyncio.sleep(6) return await get_nft_items_list() nfts_list = await get_nft_items_list()