Skip to content

Commit

Permalink
hotfix validator ics for neutron (#522)
Browse files Browse the repository at this point in the history
* fix wait for chains params

* add comment with only single validator support for neutron
  • Loading branch information
Anmol1696 authored Jul 12, 2024
1 parent 1eda7fc commit 7b90a5f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ spec:
name: faucet
{{- end }}
{{- if $chain.ics.enabled }}
{{ $waitParams := dict "chain" (list $chain.ics.provider) "port" $.Values.exposer.ports.rest "context" $ }}
{{ $waitParams := dict "chains" (list $chain.ics.provider) "port" $.Values.exposer.ports.rest "context" $ }}
{{- include "devnet.init.wait" $waitParams | indent 8 }}
{{ $icsChain := include "devnet.fullchain" (dict "name" $chain.ics.provider "file" $defaultFile "context" $) | fromJson }}
- name: init-ics
Expand Down
4 changes: 2 additions & 2 deletions starship/tests/e2e/configs/neutron-relayer.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
chains:
- id: neutron-1
name: neutron
numValidators: 1
numValidators: 1 # only support for single validator node for ics
faucet:
enabled: false
ics:
Expand All @@ -13,7 +13,7 @@ chains:
exposer: 38083
- id: cosmoshub-4
name: cosmoshub
numValidators: 1
numValidators: 1 # only support for single validator node for ics
ports:
rest: 1317
rpc: 26657
Expand Down
4 changes: 2 additions & 2 deletions starship/tests/e2e/configs/neutron.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
chains:
- id: neutron-1
name: neutron
numValidators: 1
numValidators: 1 # only support for single validator node for ics
faucet:
enabled: false
ics:
Expand All @@ -13,7 +13,7 @@ chains:
exposer: 38083
- id: cosmoshub-4
name: cosmoshub
numValidators: 1
numValidators: 1 # only support for single validator node for ics
ports:
rest: 1317
rpc: 26657
Expand Down

0 comments on commit 7b90a5f

Please sign in to comment.