Skip to content

Commit

Permalink
switch to os.getenv
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed Nov 13, 2024
1 parent e0d080a commit 13971ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
)

NETWORK_STRING = ENV.get("NETWORK", "mainnet")
NODE_URL = ENV.get("NODE_URL")
NODE_URL = os.getenv("NODE_URL")
NETWORK = {
"mainnet": EthereumNetwork.MAINNET,
"gnosis": EthereumNetwork.GNOSIS,
Expand Down

0 comments on commit 13971ea

Please sign in to comment.