aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorGregory Maxwell <[email protected]>2012-07-11 10:55:30 -0400
committerGregory Maxwell <[email protected]>2012-07-11 10:55:30 -0400
commitff20f323385db9401789047359735c8a44da3351 (patch)
tree5e5503b42dfa906d5df3600ad90532160015ab1e /src/net.cpp
parentMerge pull request #1581 from Diapolo/trans_fixplurals (diff)
downloaddiscoin-ff20f323385db9401789047359735c8a44da3351.tar.xz
discoin-ff20f323385db9401789047359735c8a44da3351.zip
Reorder dnsseed list, Jeff's seed list is static so put it last.
Because new nodes pull from the first connected node the load balancing of the first connection is more important than it should be. This change puts Pieter's seed first, because its probably the best maintained right now.
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp
index e10829aca..fc7473003 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -1137,10 +1137,10 @@ void MapPort()
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
- {"xf2.org", "bitseed.xf2.org"},
- {"bluematt.me", "dnsseed.bluematt.me"},
{"bitcoin.sipa.be", "seed.bitcoin.sipa.be"},
+ {"bluematt.me", "dnsseed.bluematt.me"},
{"dashjr.org", "dnsseed.bitcoin.dashjr.org"},
+ {"xf2.org", "bitseed.xf2.org"},
};
void ThreadDNSAddressSeed(void* parg)