From a2ed934c728a94b404859b2c1d531492b25c9953 Mon Sep 17 00:00:00 2001 From: Tudor Malene Date: Thu, 28 Mar 2024 12:49:09 +0000 Subject: [PATCH] fix --- lib/gethfork/rpc/client.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/gethfork/rpc/client.go b/lib/gethfork/rpc/client.go index 4fab4adf53..f0d276dd89 100644 --- a/lib/gethfork/rpc/client.go +++ b/lib/gethfork/rpc/client.go @@ -117,7 +117,9 @@ type clientConn struct { } // Stop closes the client. -func (c *Client) Stop() {} +func (c *Client) Stop() { + c.Close() +} func (c *Client) newClientConn(conn ServerCodec) *clientConn { ctx := context.Background()