From 1dd5441ab98e805f79795a50846d1f3987ff822a Mon Sep 17 00:00:00 2001 From: GuiltyMorishita Date: Thu, 15 Feb 2018 15:17:30 +0900 Subject: [PATCH] :wrench: Fix: [Typo] hvosts -> vhosts --- node/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/node.go b/node/node.go index a1dd5166da..b02aecfad1 100644 --- a/node/node.go +++ b/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