From bd685045c8743b77dd890bd993645c5007e559aa Mon Sep 17 00:00:00 2001 From: Brian Tiger Chow Date: Mon, 8 Dec 2014 22:42:15 -0800 Subject: [PATCH] fix: uranus and saturn IP addresses Mistake: Saturn referred to the NY node and vice versa. Correction: Fittingly, Uranus is in NY and _S_aturn is _S_ingapore. I'll have to reboot the testnet to rectify the changes. License: MIT Signed-off-by: Brian Tiger Chow --- cmd/ipfs/init.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cmd/ipfs/init.go b/cmd/ipfs/init.go index cd7ab43df..1a9e35f57 100644 --- a/cmd/ipfs/init.go +++ b/cmd/ipfs/init.go @@ -195,24 +195,24 @@ func initConfig(configFilename string, dspathOverride string, nBitsForKeypair in Address: "/ip4/104.131.131.82/tcp/4001", }, &config.BootstrapPeer{ - // neptune + // Neptune PeerID: "QmSoLnSGccFuZQJzRadHn95W2CrSFmZuTdDWP8HXaHca9z", Address: "/ip4/104.236.176.52/tcp/4001", }, &config.BootstrapPeer{ - // pluto + // Pluto PeerID: "QmSoLpPVmHKQ4XTPdz8tjDFgdeRFkpV8JgYq8JVJ69RrZm", Address: "/ip4/104.236.179.241/tcp/4001", }, &config.BootstrapPeer{ - // uranus + // Uranus PeerID: "QmSoLueR4xBeUbY9WZ9xGUUxunbKWcrNFTDAadQJmocnWm", - Address: "/ip4/128.199.219.111/tcp/4001", + Address: "/ip4/162.243.248.213/tcp/4001", }, &config.BootstrapPeer{ - // saturn + // Saturn PeerID: "QmSoLSafTMBsPKadTEgaXctDQVcqN88CNLHXMkTNwMKPnu", - Address: "/ip4/162.243.248.213/tcp/4001", + Address: "/ip4/128.199.219.111/tcp/4001", }, },