Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion env_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ def main() -> None:
os.environ["RPC_URL"] = args.rpc_url

ok_env = check_env_vars()
ok_rpc = check_rpc()
ok_rpc = check_rpc()

if ok_rpc is None:
print("\n[WARN] RPC check was skipped (no RPC_URL).")



print("\n=== RESULT ===")
Expand Down