diff options
| author | Jeff Garzik <[email protected]> | 2013-03-29 08:03:18 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2013-03-29 08:03:18 -0700 |
| commit | ea83336f4eceecbc046e465509b792dd203327bc (patch) | |
| tree | 67c5e5c908f293edc2fc31f008c173fe59251ee0 /src/net.cpp | |
| parent | Merge pull request #2385 from gavinandresen/alertnotify (diff) | |
| parent | Add a new testnet dnsseed (currently only static list, will update) (diff) | |
| download | discoin-ea83336f4eceecbc046e465509b792dd203327bc.tar.xz discoin-ea83336f4eceecbc046e465509b792dd203327bc.zip | |
Merge pull request #2411 from TheBlueMatt/master
(finally) Remove IRC Seed support now that lfnet is down.
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/net.cpp b/src/net.cpp index 3406a28b0..6c8fe3ffc 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -3,7 +3,6 @@ // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#include "irc.h" #include "db.h" #include "net.h" #include "init.h" @@ -347,7 +346,6 @@ bool GetMyExternalIP2(const CService& addrConnect, const char* pszGet, const cha return error("GetMyExternalIP() : connection closed"); } -// We now get our external IP from the IRC server first and only use this as a backup bool GetMyExternalIP(CNetAddr& ipRet) { CService addrConnect; @@ -1155,6 +1153,7 @@ static const char *strMainNetDNSSeed[][2] = { static const char *strTestNetDNSSeed[][2] = { {"bitcoin.petertodd.org", "testnet-seed.bitcoin.petertodd.org"}, + {"bluematt.me", "testnet-seed.bluematt.me"}, {NULL, NULL} }; @@ -1928,10 +1927,6 @@ void StartNode(void* parg) if (fUseUPnP) MapPort(); - // Get addresses from IRC and advertise ours - if (!NewThread(ThreadIRCSeed, NULL)) - printf("Error: NewThread(ThreadIRCSeed) failed\n"); - // Send and receive from sockets, accept connections if (!NewThread(ThreadSocketHandler, NULL)) printf("Error: NewThread(ThreadSocketHandler) failed\n"); |