Skip to content
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.

Commit

Permalink
Increase tezos timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
wrkzdev committed Jan 29, 2024
1 parent e3d6b3c commit 3f44682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wrkzcoin_tipbot/cogs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2171,7 +2171,7 @@ async def tezos_get_head(
}
try:
async with aiohttp.ClientSession() as cs:
async with cs.post(proxy + "/get_head", json=data, timeout=timeout) as r:
async with cs.post(proxy + "/get_head", json=data, timeout=timeout*2) as r:
res_data = await r.read()
res_data = res_data.decode('utf-8')
result = json.loads(res_data)
Expand Down

0 comments on commit 3f44682

Please sign in to comment.