aboutsummaryrefslogtreecommitdiffstats
path: root/node/api.go
diff options
context:
space:
mode:
Diffstat (limited to 'node/api.go')
-rw-r--r--node/api.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/node/api.go b/node/api.go
index 2942705d9..631e92c8e 100644
--- a/node/api.go
+++ b/node/api.go
@@ -84,7 +84,7 @@ func (api *PrivateAdminAPI) StartRPC(host *string, port *rpc.HexNumber, cors *st
}
if host == nil {
- h := common.DefaultHTTPHost
+ h := DefaultHTTPHost
if api.node.config.HTTPHost != "" {
h = api.node.config.HTTPHost
}
@@ -133,7 +133,7 @@ func (api *PrivateAdminAPI) StartWS(host *string, port *rpc.HexNumber, allowedOr
}
if host == nil {
- h := common.DefaultWSHost
+ h := DefaultWSHost
if api.node.config.WSHost != "" {
h = api.node.config.WSHost
}