From cef1a812402261932cb65134d2e509a14a460ed8 Mon Sep 17 00:00:00 2001 From: C Jepson Date: Mon, 30 May 2016 13:36:45 -0400 Subject: [PATCH] Bind to localhost only by default (#3) --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index 610bd31..c42cf86 100644 --- a/config.go +++ b/config.go @@ -42,7 +42,7 @@ var ( defaultWalletRPCCertFile = filepath.Join(dcrwalletHomeDir, "rpc.cert") defaultLogDir = filepath.Join(curDir, defaultLogDirname) defaultHost = "localhost" - defaultHttpServerBind = "" + defaultHttpServerBind = "localhost" defaultHttpServerPort = 0 defaultHttpUIPath = "webui/"