diff options
| author | Gavin Andresen <[email protected]> | 2013-08-15 18:51:06 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-08-15 18:51:06 -0700 |
| commit | 9be4cff5f683d8d4b151a76c598e22e22ba63049 (patch) | |
| tree | f73cb1fd1e21ef1e41235c4ebf1dcd074aef0707 /src/init.cpp | |
| parent | Merge pull request #2131 from sipa/evens (diff) | |
| parent | Mempool consistency check (diff) | |
| download | discoin-9be4cff5f683d8d4b151a76c598e22e22ba63049.tar.xz discoin-9be4cff5f683d8d4b151a76c598e22e22ba63049.zip | |
Merge pull request #2876 from sipa/fixreorgcrash
Fix reorganization crash
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 09871c012..9f3d52641 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -424,6 +424,7 @@ bool AppInit2(boost::thread_group& threadGroup) fDebug = GetBoolArg("-debug", false); fBenchmark = GetBoolArg("-benchmark", false); + mempool.fChecks = GetBoolArg("-checkmempool", RegTest()); // -par=0 means autodetect, but nScriptCheckThreads==0 means no concurrency nScriptCheckThreads = GetArg("-par", 0); |