Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Add trunk #748

Merged
merged 13 commits into from
Sep 19, 2023
Prev Previous commit
Next Next commit
Fix exception in constants.py
  • Loading branch information
ClementWalter committed Sep 18, 2023
commit 21aa88ed4abeec20a010b3b88f3debcf654fa11a
2 changes: 1 addition & 1 deletion scripts/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class ChainId(IntEnum):
chain_id = int(payload["result"], 16)

NETWORK["chain_id"] = ChainId.chain_id
except ConnectionError:
except (requests.exceptions.ConnectionError, requests.exceptions.MissingSchema):
pass

ETH_TOKEN_ADDRESS = 0x49D36570D4E46F48E99674BD3FCC84644DDD6B96F7C741B1562B82F9E004DC7
Expand Down