Skip to content

Commit c2efd98

Browse files
committed
(finally) Remove IRC Seed support now that lfnet is down.
1 parent dfd71bb commit c2efd98

11 files changed

+0
-435
lines changed

bitcoin-qt.pro

-2
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ HEADERS += src/qt/bitcoingui.h \
159159
src/walletdb.h \
160160
src/script.h \
161161
src/init.h \
162-
src/irc.h \
163162
src/bloom.h \
164163
src/mruset.h \
165164
src/checkqueue.h \
@@ -230,7 +229,6 @@ SOURCES += src/qt/bitcoin.cpp \
230229
src/main.cpp \
231230
src/init.cpp \
232231
src/net.cpp \
233-
src/irc.cpp \
234232
src/bloom.cpp \
235233
src/checkpoints.cpp \
236234
src/addrman.cpp \

doc/coding.txt

-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ StartNode : Starts other threads.
6565
ThreadGetMyExternalIP : Determines outside-the-firewall IP address,
6666
sends addr message to connected peers when it determines it.
6767

68-
ThreadIRCSeed : Joins IRC bootstrapping channel, watching for new
69-
peers and advertising this node's IP address.
70-
7168
ThreadSocketHandler : Sends/Receives data from peers on port 8333.
7269

7370
ThreadMessageHandler : Higher-level message handling (sending and

src/init.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,6 @@ std::string HelpMessage()
262262
" -externalip=<ip> " + _("Specify your own public address") + "\n" +
263263
" -onlynet=<net> " + _("Only connect to nodes in network <net> (IPv4, IPv6 or Tor)") + "\n" +
264264
" -discover " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n" +
265-
" -irc " + _("Find peers using internet relay chat (default: 0)") + "\n" +
266265
" -checkpoints " + _("Only accept block chain matching built-in checkpoints (default: 1)") + "\n" +
267266
" -listen " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n" +
268267
" -bind=<addr> " + _("Bind to given address and always listen on it. Use [host]:port notation for IPv6") + "\n" +
@@ -452,9 +451,6 @@ bool AppInit2()
452451
// ********************************************************* Step 2: parameter interactions
453452

454453
fTestNet = GetBoolArg("-testnet");
455-
if (fTestNet) {
456-
SoftSetBoolArg("-irc", true);
457-
}
458454

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

0 commit comments

Comments
 (0)