diff --git a/internal/testclient/common.go b/internal/testclient/common.go index ff4460933..41248916e 100644 --- a/internal/testclient/common.go +++ b/internal/testclient/common.go @@ -1,3 +1,3 @@ package testclient -const CometWebsocketURL = "ws://localhost:36657/websocket" +const CometLocalWebsocketURL = "ws://localhost:36657/websocket" diff --git a/pkg/client/events_query/client.go b/pkg/client/events_query/client.go index 3925fc6b8..0685cbf9c 100644 --- a/pkg/client/events_query/client.go +++ b/pkg/client/events_query/client.go @@ -33,7 +33,7 @@ type eventsQueryClient struct { // cometWebsocketURL is the websocket URL for the cometbft node. It is assigned // in NewEventsQueryClient. cometWebsocketURL string - // dialer is resopnsible for createing the connection instance which + // dialer is responsible for creating the connection instance which // facilitates communication with the cometbft node via message passing. dialer client.Dialer // eventsBytesAndConnsMu protects the eventsBytesAndConns map.