diff options
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/init.cpp b/src/init.cpp index f9185ba9d..8dd9ed9cf 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -317,7 +317,6 @@ std::string HelpMessage() " -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" + " -checkpoints " + _("Only accept block chain matching built-in checkpoints (default: 1)") + "\n" + - " -irc " + _("Find peers using internet relay chat (default: 0)") + "\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" + " -dnsseed " + _("Find peers using DNS lookup (default: 1 unless -connect)") + "\n" + @@ -509,12 +508,6 @@ bool AppInit2(boost::thread_group& threadGroup) if (fBloomFilters) nLocalServices |= NODE_BLOOM; - // FedoraCoin: Keep irc seeding on by default for now. -// if (fTestNet) -// { - SoftSetBoolArg("-irc", true); -// } - if (mapArgs.count("-bind")) { // when specifying an explicit binding address, you want to listen on it // even when -connect or -proxy is specified |