Skip to content

Commit

Permalink
remove references to the websocket address
Browse files Browse the repository at this point in the history
  • Loading branch information
faddat committed Sep 16, 2023
1 parent cbf7887 commit d6e7b68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/e2e/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,6 @@ rpc_addr = "%s"
rpc_timeout = "10s"
store_prefix = "ibc"
trusting_period = "14days"
websocket_addr = "%s"
[chains.gas_price]
denom = "stake"
Expand Down Expand Up @@ -822,14 +821,12 @@ func (tr TestRun) addChainToHermes(
keyName := "query"
rpcAddr := "http://" + queryNodeIP + ":26658"
grpcAddr := "tcp://" + queryNodeIP + ":9091"
wsAddr := "ws://" + queryNodeIP + ":26658/websocket"

chainConfig := fmt.Sprintf(hermesChainConfigTemplate,
grpcAddr,
chainId,
keyName,
rpcAddr,
wsAddr,
// action.consumer,
)

Expand Down
2 changes: 2 additions & 0 deletions x/ccv/provider/keeper/proposal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ func TestPendingConsumerAdditionPropDeletion(t *testing.T) {
defer ctrl.Finish()

for _, tc := range testCases {
tc := tc
providerKeeper.SetPendingConsumerAdditionProp(ctx, &tc.ConsumerAdditionProposal)
}

Expand Down Expand Up @@ -603,6 +604,7 @@ func TestPendingConsumerRemovalPropDeletion(t *testing.T) {
defer ctrl.Finish()

for _, tc := range testCases {
tc := tc
providerKeeper.SetPendingConsumerRemovalProp(ctx, &tc.ConsumerRemovalProposal)
}

Expand Down

0 comments on commit d6e7b68

Please sign in to comment.