Skip to content

Commit e2f2bb3

Browse files
GuiltyMorishitakaralabe
authored andcommitted
node: fix typo hvosts -> vhosts (#16096)
1 parent b92276c commit e2f2bb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node/node.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ func (n *Node) startHTTP(endpoint string, apis []rpc.API, modules []string, cors
394394
return err
395395
}
396396
go rpc.NewHTTPServer(cors, vhosts, handler).Serve(listener)
397-
n.log.Info("HTTP endpoint opened", "url", fmt.Sprintf("http://%s", endpoint), "cors", strings.Join(cors, ","), "hvosts", strings.Join(vhosts, ","))
397+
n.log.Info("HTTP endpoint opened", "url", fmt.Sprintf("http://%s", endpoint), "cors", strings.Join(cors, ","), "vhosts", strings.Join(vhosts, ","))
398398
// All listeners booted successfully
399399
n.httpEndpoint = endpoint
400400
n.httpListener = listener

0 commit comments

Comments
 (0)