From 01cb965ccee70d93ad039d5a0340cf17f14bb212 Mon Sep 17 00:00:00 2001 From: Matthew Wampler-Doty Date: Mon, 16 Mar 2015 22:32:16 -0700 Subject: [PATCH] localhost -> 127.0.0.1 --- config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.go b/config/config.go index 5622614e1..fb1e34bfd 100644 --- a/config/config.go +++ b/config/config.go @@ -37,7 +37,7 @@ Level = "debug" [RPC.HTTP] # For the RPC API HTTP server. Port required. -ListenAddr = "localhost:8081" +ListenAddr = "127.0.0.1:8081" [Alert] # TODO: Document options @@ -55,7 +55,7 @@ func initDefaults() { App.SetDefault("Log.Stdout.Level", "info") App.SetDefault("Log.File.Dir", rootDir+"/log") App.SetDefault("Log.File.Level", "debug") - App.SetDefault("RPC.HTTP.ListenAddr", "localhost:8081") + App.SetDefault("RPC.HTTP.ListenAddr", "127.0.0.1:8081") App.SetDefault("GenesisFile", rootDir+"/genesis.json") App.SetDefault("AddrBookFile", rootDir+"/addrbook.json")