Skip to content

Commit

Permalink
fix: port wrong kwarg
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Nov 21, 2024
1 parent a1e2049 commit 88f0173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape_node/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def __init__(
if hostname is not None:
kwargs_ctor["rpc_addr"] = hostname
if port is not None:
kwargs_ctor["port"] = f"{port}"
kwargs_ctor["rpc_port"] = f"{port}"
if ws_hostname:
kwargs_ctor["ws_enabled"] = True
kwargs_ctor["ws_addr"] = ws_hostname
Expand Down

0 comments on commit 88f0173

Please sign in to comment.