Skip to content

Commit

Permalink
Expose grpc port
Browse files Browse the repository at this point in the history
  • Loading branch information
starsquidnodes committed Mar 25, 2024
1 parent 3b4d35b commit 18ff249
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pond
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ def start(args, config, home):
for validator in validators:
node_ports = [
urlparse(validator["api_url"]).port,
urlparse(validator["rpc_url"]).port
validator["rpc_url"].split(":")[-1],
validator["rpc_url"].split(":")[-1][:-2] + "90"
]

# backwards compatibility
Expand Down

0 comments on commit 18ff249

Please sign in to comment.