Skip to content

Commit

Permalink
fix updateClient command
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol1696 committed Oct 29, 2024
1 parent 46dcda9 commit 611cbaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion starship/exposer/handler_relayer.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (a *AppServer) GetClients(ctx context.Context, req *pb.RequestGetClients) (

func (a *AppServer) updateClient(ctx context.Context, chainID, clientID string) (string, error) {
// note: for cli one time txn, use `config-cli.toml` file
updateCmd := fmt.Sprintf("hermes --config /root/.hermes/config-cli.toml update client --host-chain %s --client-id %s", chainID, clientID)
updateCmd := fmt.Sprintf("hermes --config /root/.hermes/config-cli.toml update client --host-chain %s --client %s", chainID, clientID)
a.logger.Debug("running command:", zap.String("cmd", updateCmd))

output, err := runCommand(updateCmd)
Expand Down
2 changes: 1 addition & 1 deletion starship/tests/e2e/configs/three-chain.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ registry:
grpc: 9091

exposer:
image: anmol1696/exposer:20241029-2dcaa22
image: anmol1696/exposer:20241029-46dcda9

0 comments on commit 611cbaf

Please sign in to comment.