Skip to content

Commit

Permalink
remove error if no chia_url is set
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakuhito committed May 7, 2024
1 parent 20ba7fd commit fe13ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/cli_wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async def get_node_client(chain_name: str = "xch") -> FullNodeRpcClient:
await node_client.healthz()
return node_client
except Exception as e:
logging.error("Failed to get node using specified url", exc_info=True)
# logging.error("Failed to get node using specified url", exc_info=True)
pass
root_path = Path(get_config_item([chain_name, "chia_root"]))
config = load_config(root_path, "config.yaml")
Expand Down

0 comments on commit fe13ef5

Please sign in to comment.