Skip to content

Commit

Permalink
tilt: move wormchain guardian flags to tiltfile
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-gray committed Oct 27, 2022
1 parent 7631341 commit 7ee3f6b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,14 @@ def build_node_yaml():
"wormhole.test.near"
]

if wormchain:
container["command"] += [
"--wormchainWS",
"ws://guardian-validator:26657/websocket",
"--wormchainLCD",
"http://guardian-validator:1317"
]

return encode_yaml_stream(node_yaml)

k8s_yaml_with_ns(build_node_yaml())
Expand Down
8 changes: 4 additions & 4 deletions devnet/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ spec:
- ws://eth-devnet:8545
- --neonRPC
- ws://eth-devnet:8545
- --wormchainWS
- ws://guardian-validator:26657/websocket
- --wormchainLCD
- http://guardian-validator:1317
# - --wormchainWS
# - ws://guardian-validator:26657/websocket
# - --wormchainLCD
# - http://guardian-validator:1317
# - --terraWS
# - ws://terra-terrad:26657/websocket
# - --terraLCD
Expand Down

0 comments on commit 7ee3f6b

Please sign in to comment.