1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-30 18:13:54 +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",
},
&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",
},
},