Skip to content

Commit

Permalink
Remove the resetOrigin call on ensureConnection that turned out unnec…
Browse files Browse the repository at this point in the history
…essary (#172)
  • Loading branch information
cmmarslender authored Nov 13, 2024
1 parent 9bba038 commit 3b98ebf
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions pkg/websocketclient/websocketclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,6 @@ func NewWebsocketClient(cfg *config.ChiaConfig, options ...rpcinterface.ClientOp
return c, nil
}

// resetOrigin so we get a unique identifier if we have to establish a new connection
// Helps ensure that we don't end up getting duplicate messages
func (c *WebsocketClient) resetOrigin() {
c.origin = fmt.Sprintf("go-chia-rpc-%d", time.Now().UnixNano())
}

// SetBaseURL sets the base URL for API requests to a custom endpoint.
func (c *WebsocketClient) SetBaseURL(url *url.URL) error {
c.baseURL = url
Expand Down Expand Up @@ -393,7 +387,6 @@ func (c *WebsocketClient) generateDialer() error {
// ensureConnection ensures there is an open websocket connection and the listener is listening
func (c *WebsocketClient) ensureConnection() error {
if c.conn == nil {
c.resetOrigin()
u := url.URL{Scheme: "wss", Host: fmt.Sprintf("%s:%d", c.baseURL.Host, c.daemonPort), Path: "/"}
var err error
c.conn, _, err = c.daemonDialer.Dial(u.String(), nil)
Expand Down

0 comments on commit 3b98ebf

Please sign in to comment.