aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--node/node.go2
-rw-r--r--rpc/http.go1
2 files changed, 1 insertions, 2 deletions
diff --git a/node/node.go b/node/node.go
index 37bd2eb3c..a1dd5166d 100644
--- a/node/node.go
+++ b/node/node.go
@@ -324,7 +324,7 @@ func (n *Node) startIPC(apis []rpc.API) error {
return err
}
go func() {
- n.log.Info("IPC endpoint opened", "url", fmt.Sprintf("%s", n.ipcEndpoint))
+ n.log.Info("IPC endpoint opened", "url", n.ipcEndpoint)
for {
conn, err := listener.Accept()
diff --git a/rpc/http.go b/rpc/http.go
index 277f093a2..a46d8c2b3 100644
--- a/rpc/http.go
+++ b/rpc/http.go
@@ -245,7 +245,6 @@ func (h *virtualHostHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
return
}
http.Error(w, "invalid host specified", http.StatusForbidden)
- return
}
func newVHostHandler(vhosts []string, next http.Handler) http.Handler {