changeset 3186:bf05196d4f7f draft

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.
author Gregory Maxwell <greg@xiph.org>
date Wed, 11 Jul 2012 10:55:30 -0400
parents e615501e57c8
children 6812e3b03eec 876c185d433b
files src/net.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -1137,10 +1137,10 @@
 // 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"},
+    {"bitcoin.sipa.be", "seed.bitcoin.sipa.be"},
     {"bluematt.me", "dnsseed.bluematt.me"},
-    {"bitcoin.sipa.be", "seed.bitcoin.sipa.be"},
     {"dashjr.org", "dnsseed.bitcoin.dashjr.org"},
+    {"xf2.org", "bitseed.xf2.org"},
 };
 
 void ThreadDNSAddressSeed(void* parg)