From 39275ecf2f482f0097af316b25f12ca7fceb4605 Mon Sep 17 00:00:00 2001 From: evan-forbes Date: Fri, 15 Nov 2024 13:58:17 -0600 Subject: [PATCH] fix: linter --- rpc/jsonrpc/client/http_json_client.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/rpc/jsonrpc/client/http_json_client.go b/rpc/jsonrpc/client/http_json_client.go index ad1dc7a42..ff5cfd658 100644 --- a/rpc/jsonrpc/client/http_json_client.go +++ b/rpc/jsonrpc/client/http_json_client.go @@ -9,7 +9,6 @@ import ( "net" "net/http" "net/url" - "regexp" "strings" cmtsync "github.com/tendermint/tendermint/libs/sync" @@ -25,8 +24,6 @@ const ( protoUNIX = "unix" ) -var endsWithPortPattern = regexp.MustCompile(`:[0-9]+$`) - // Parsed URL structure type parsedURL struct { url.URL