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/init.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/init.cpp')
| -rw-r--r-- | src/init.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/init.cpp b/src/init.cpp index 7c72982dd..1bf76631d 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -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" + @@ -453,9 +452,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 |