1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-07-01 02:30:39 +08:00

Merge pull request #431 from jbenet/hotfix/bootstrap-uranus-saturn

fix(bootstrap) swap IP addresses of Uranus and Saturn
This commit is contained in:
Juan Batiz-Benet
2014-12-08 23:29:19 -08:00

View File

@ -195,24 +195,24 @@ func initConfig(configFilename string, dspathOverride string, nBitsForKeypair in
Address: "/ip4/104.131.131.82/tcp/4001", Address: "/ip4/104.131.131.82/tcp/4001",
}, },
&config.BootstrapPeer{ &config.BootstrapPeer{
// neptune // Neptune
PeerID: "QmSoLnSGccFuZQJzRadHn95W2CrSFmZuTdDWP8HXaHca9z", PeerID: "QmSoLnSGccFuZQJzRadHn95W2CrSFmZuTdDWP8HXaHca9z",
Address: "/ip4/104.236.176.52/tcp/4001", Address: "/ip4/104.236.176.52/tcp/4001",
}, },
&config.BootstrapPeer{ &config.BootstrapPeer{
// pluto // Pluto
PeerID: "QmSoLpPVmHKQ4XTPdz8tjDFgdeRFkpV8JgYq8JVJ69RrZm", PeerID: "QmSoLpPVmHKQ4XTPdz8tjDFgdeRFkpV8JgYq8JVJ69RrZm",
Address: "/ip4/104.236.179.241/tcp/4001", Address: "/ip4/104.236.179.241/tcp/4001",
}, },
&config.BootstrapPeer{ &config.BootstrapPeer{
// uranus // Uranus
PeerID: "QmSoLueR4xBeUbY9WZ9xGUUxunbKWcrNFTDAadQJmocnWm", PeerID: "QmSoLueR4xBeUbY9WZ9xGUUxunbKWcrNFTDAadQJmocnWm",
Address: "/ip4/128.199.219.111/tcp/4001", Address: "/ip4/162.243.248.213/tcp/4001",
}, },
&config.BootstrapPeer{ &config.BootstrapPeer{
// saturn // Saturn
PeerID: "QmSoLSafTMBsPKadTEgaXctDQVcqN88CNLHXMkTNwMKPnu", PeerID: "QmSoLSafTMBsPKadTEgaXctDQVcqN88CNLHXMkTNwMKPnu",
Address: "/ip4/162.243.248.213/tcp/4001", Address: "/ip4/128.199.219.111/tcp/4001",
}, },
}, },