Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rpc "no port provided" error by backporting #1528

Draft
wants to merge 5 commits into
base: v0.34.x-celestia
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: linter
  • Loading branch information
evan-forbes committed Nov 15, 2024
commit 39275ecf2f482f0097af316b25f12ca7fceb4605
3 changes: 0 additions & 3 deletions rpc/jsonrpc/client/http_json_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import (
"net"
"net/http"
"net/url"
"regexp"
"strings"

cmtsync "github.com/tendermint/tendermint/libs/sync"
Expand All @@ -25,8 +24,6 @@ const (
protoUNIX = "unix"
)

var endsWithPortPattern = regexp.MustCompile(`:[0-9]+$`)

// Parsed URL structure
type parsedURL struct {
url.URL
Expand Down
Loading