@cryptotaxi247 / kubo / commits / a16e0bba2

repo/config: Added default gateway address to initial config

Matt Bell committed Feb 2, 2015 at 17:45 UTC a16e0bba2f3284278cafbc702c068f9fa4be5de0
1 file changed +2 -1
repo/config/init.go
+2 -1
@@ -35,7 +35,8 @@ func Init(out io.Writer, nBitsForKeypair int) (*Config, error) {
35 "/ip4/0.0.0.0/tcp/4001",
36 // "/ip4/0.0.0.0/udp/4002/utp", // disabled for now.
37 },
38 - API: "/ip4/127.0.0.1/tcp/5001",
38 + API: "/ip4/127.0.0.1/tcp/5001",
39 + Gateway: "/ip4/127.0.0.1/tcp/8080",
40 },
41
42 Bootstrap: BootstrapPeerStrings(bootstrapPeers),