Skip to content

Commit

Permalink
(finally) Remove IRC Seed support now that lfnet is down.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlueMatt committed Mar 24, 2013
1 parent dfd71bb commit c2efd98
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 435 deletions.
2 changes: 0 additions & 2 deletions bitcoin-qt.pro
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ HEADERS += src/qt/bitcoingui.h \
src/walletdb.h \
src/script.h \
src/init.h \
src/irc.h \
src/bloom.h \
src/mruset.h \
src/checkqueue.h \
Expand Down Expand Up @@ -230,7 +229,6 @@ SOURCES += src/qt/bitcoin.cpp \
src/main.cpp \
src/init.cpp \
src/net.cpp \
src/irc.cpp \
src/bloom.cpp \
src/checkpoints.cpp \
src/addrman.cpp \
Expand Down
3 changes: 0 additions & 3 deletions doc/coding.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@ StartNode : Starts other threads.
ThreadGetMyExternalIP : Determines outside-the-firewall IP address,
sends addr message to connected peers when it determines it.

ThreadIRCSeed : Joins IRC bootstrapping channel, watching for new
peers and advertising this node's IP address.

ThreadSocketHandler : Sends/Receives data from peers on port 8333.

ThreadMessageHandler : Higher-level message handling (sending and
Expand Down
4 changes: 0 additions & 4 deletions src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ std::string HelpMessage()
" -externalip=<ip> " + _("Specify your own public address") + "\n" +
" -onlynet=<net> " + _("Only connect to nodes in network <net> (IPv4, IPv6 or Tor)") + "\n" +
" -discover " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n" +
" -irc " + _("Find peers using internet relay chat (default: 0)") + "\n" +
" -checkpoints " + _("Only accept block chain matching built-in checkpoints (default: 1)") + "\n" +
" -listen " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n" +
" -bind=<addr> " + _("Bind to given address and always listen on it. Use [host]:port notation for IPv6") + "\n" +
Expand Down Expand Up @@ -452,9 +451,6 @@ bool AppInit2()
// ********************************************************* Step 2: parameter interactions

fTestNet = GetBoolArg("-testnet");
if (fTestNet) {
SoftSetBoolArg("-irc", true);
}

if (mapArgs.count("-bind")) {
// when specifying an explicit binding address, you want to listen on it
Expand Down
Loading

0 comments on commit c2efd98

Please sign in to comment.