Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zaivanza committed Nov 15, 2023
1 parent e227abf commit cfa7f9e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/utils/starknet.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ async def get_balance(self, token_symbol: str, wallet: str) -> dict:
# logger.info(f'Request timed out: {attempt}/{max_attempt}')

except Exception as e:
logger.error(f"An error occurred: {e}. {attempt}/{max_attempt}")
pass
# logger.info(f"An error occurred: {e}. {attempt}/{max_attempt}")

if attempt <= max_attempt:
await asyncio.sleep(1) # Sleep for a bit before retrying
Expand Down

0 comments on commit cfa7f9e

Please sign in to comment.