fix timeout

This commit is contained in:
user 2024-04-05 23:31:06 +03:00
parent 5476111aab
commit 567c200df2
1 changed files with 1 additions and 1 deletions

View File

@ -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()