diff options
| author | Gavin Andresen <[email protected]> | 2012-02-06 14:35:57 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-02-07 09:14:31 -0500 |
| commit | 9d952d17bb1bd05d5dbfb620f669adfbc223ce0e (patch) | |
| tree | bd1361bd1ea63650651969dd58a662ddc267b26a /src/irc.cpp | |
| parent | New GetArg features: allow --, and booleans can be -foo or -nofoo (diff) | |
| download | discoin-9d952d17bb1bd05d5dbfb620f669adfbc223ce0e.tar.xz discoin-9d952d17bb1bd05d5dbfb620f669adfbc223ce0e.zip | |
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 8805c7fd5..78d86e119 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; |