From e04717f2ac2aac0fbb4855e15235014fcf6fc350 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 18:43:38 +0100 Subject: [PATCH] fix: default comet port (backport #23343) (#23353) Co-authored-by: Marko --- server/v2/cometbft/grpc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/v2/cometbft/grpc.go b/server/v2/cometbft/grpc.go index 65a368b03a..c25c2a8cd1 100644 --- a/server/v2/cometbft/grpc.go +++ b/server/v2/cometbft/grpc.go @@ -524,7 +524,7 @@ func (c *consensus[T]) maybeHandleExternalServices(ctx context.Context, req *abc // Handle tx service if strings.HasPrefix(req.Path, "/cosmos.tx.v1beta1.Service") { - rpcClient, _ := client.NewClientFromNode(c.cfg.AppTomlConfig.Address) + rpcClient, _ := client.NewClientFromNode(c.cfg.ConfigTomlConfig.RPC.ListenAddress) txConfig := authtx.NewTxConfig( c.appCodecs.AppCodec,