Răsfoiți Sursa

node: fix typo hvosts -> vhosts (#16096)

GuiltyMorishita 7 ani în urmă
părinte
comite
e2f2bb3e2e
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      node/node.go

+ 1 - 1
node/node.go

@@ -394,7 +394,7 @@ func (n *Node) startHTTP(endpoint string, apis []rpc.API, modules []string, cors
 		return err
 	}
 	go rpc.NewHTTPServer(cors, vhosts, handler).Serve(listener)
-	n.log.Info("HTTP endpoint opened", "url", fmt.Sprintf("http://%s", endpoint), "cors", strings.Join(cors, ","), "hvosts", strings.Join(vhosts, ","))
+	n.log.Info("HTTP endpoint opened", "url", fmt.Sprintf("http://%s", endpoint), "cors", strings.Join(cors, ","), "vhosts", strings.Join(vhosts, ","))
 	// All listeners booted successfully
 	n.httpEndpoint = endpoint
 	n.httpListener = listener