diff options
author | GuiltyMorishita <morilliantblue@gmail.com> | 2018-02-15 18:38:39 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-02-15 18:38:39 +0800 |
commit | e2f2bb3e2e57118a3c206be91554c67cc9b2622b (patch) | |
tree | b5d6068753dcde7778830f28715ed6c4775b0fe5 /node | |
parent | b92276c7005cf7286f1e5ebdc8ac75aea149d502 (diff) | |
download | dexon-e2f2bb3e2e57118a3c206be91554c67cc9b2622b.tar.gz dexon-e2f2bb3e2e57118a3c206be91554c67cc9b2622b.tar.zst dexon-e2f2bb3e2e57118a3c206be91554c67cc9b2622b.zip |
node: fix typo hvosts -> vhosts (#16096)
Diffstat (limited to 'node')
-rw-r--r-- | node/node.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/node.go b/node/node.go index a1dd5166d..b02aecfad 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 |