Skip to content

Commit

Permalink
chore: fix port
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk committed Jun 24, 2023
1 parent 06f434a commit 1bdcbf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/cosmvm/start_node.star
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ def start_cosmos_node(plan,args):
"grpc" : PortSpec(number=9090),
"http" : PortSpec(number=9091),
"tcp" : PortSpec(number=26656),
"rpc" : PortSpec(number=26657, application_protocol="http")
"rpc" : PortSpec(number=26657)
},
public_ports={
"grpc" : PortSpec(number=9090 ),
"http" : PortSpec(number=9091),
"tcp" : PortSpec(number=26656),
"rpc" : PortSpec(number=4564, application_protocol="http")
"rpc" : PortSpec(number=4564)
},

entrypoint=["/bin/sh","-c","cd ../../start-scripts && chmod +x start.sh && ./start.sh"]
Expand Down

0 comments on commit 1bdcbf4

Please sign in to comment.