diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-02-23 23:52:27 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-02-23 23:52:27 -0800 |
| commit | 0bd573d6662e2c07fe7afcf55cb926ce9be95644 (patch) | |
| tree | 4524cddfead70c76d81f00a27b4a45bacc3419ca /src/init.cpp | |
| parent | Merge pull request #2299 from gavinandresen/localsocketuri (diff) | |
| parent | small changes in init, main, checkpoints.h and bitcoin-qt.pro (diff) | |
| download | discoin-0bd573d6662e2c07fe7afcf55cb926ce9be95644.tar.xz discoin-0bd573d6662e2c07fe7afcf55cb926ce9be95644.zip | |
Merge pull request #2186 from Diapolo/misc_stuff
small changes in init, main, checkpoints.h and bitcoin-qt.pro
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 64f91a349..5b8436651 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -498,7 +498,7 @@ bool AppInit2() nScriptCheckThreads = GetArg("-par", 0); if (nScriptCheckThreads == 0) nScriptCheckThreads = boost::thread::hardware_concurrency(); - if (nScriptCheckThreads <= 1) + if (nScriptCheckThreads <= 1) nScriptCheckThreads = 0; else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS) nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS; |