diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-02-06 14:35:57 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-02-07 09:14:31 -0500 |
commit | 9d952d17bb1bd05d5dbfb620f669adfbc223ce0e (patch) | |
tree | bd1361bd1ea63650651969dd58a662ddc267b26a /src/irc.cpp | |
parent | 3ad9f8a70fda629d0ec0b87631d1361178763733 (diff) |
Look for flushwallet/listen/irc/dnsseed/upnp instead of noflushwallet/etc. And switch default for irc to 0.
Diffstat (limited to 'src/irc.cpp')
-rw-r--r-- | src/irc.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/irc.cpp b/src/irc.cpp index 8805c7fd5b..78d86e1196 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -261,8 +261,9 @@ void ThreadIRCSeed2(void* parg) if (mapArgs.count("-connect") || fNoListen) return; - if (GetBoolArg("-noirc")) + if (!GetBoolArg("-irc", false)) return; + printf("ThreadIRCSeed started\n"); int nErrorWait = 10; int nRetryWait = 10; |