diff --git a/starship/exposer/handler_relayer.go b/starship/exposer/handler_relayer.go index 455d1338..d8dbb3da 100644 --- a/starship/exposer/handler_relayer.go +++ b/starship/exposer/handler_relayer.go @@ -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) diff --git a/starship/tests/e2e/configs/three-chain.yaml b/starship/tests/e2e/configs/three-chain.yaml index 42f239f1..d4cd3897 100644 --- a/starship/tests/e2e/configs/three-chain.yaml +++ b/starship/tests/e2e/configs/three-chain.yaml @@ -60,4 +60,4 @@ registry: grpc: 9091 exposer: - image: anmol1696/exposer:20241029-2dcaa22 + image: anmol1696/exposer:20241029-46dcda9