diff options
| author | Philip Kaufmann <[email protected]> | 2014-02-18 12:48:16 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-03-27 11:54:13 +0100 |
| commit | 5409404d7585d45b5d4a7142171f138c213e6e19 (patch) | |
| tree | e04848a16e77aee270cd7bd5fe1c12f825860aac /src/qt/optionsdialog.cpp | |
| parent | Merge pull request #3682 (diff) | |
| download | discoin-5409404d7585d45b5d4a7142171f138c213e6e19.tar.xz discoin-5409404d7585d45b5d4a7142171f138c213e6e19.zip | |
add constant for shared (GUI/core) -par settings
- introduce DEFAULT_SCRIPTCHECK_THREADS in main.h
- only show values from -"MAX_HW_THREADS" up to 16 for -par, as it
makes no sense to try to leave more "cores free" than the system
supports anyway
- use the new constant in optionsdialog and remove defaults from
.ui file
Diffstat (limited to 'src/qt/optionsdialog.cpp')
| -rw-r--r-- | src/qt/optionsdialog.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index 9f7c48494..977f7f4da 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -14,7 +14,7 @@ #include "monitoreddatamapper.h" #include "optionsmodel.h" -#include "main.h" // for CTransaction::nMinTxFee +#include "main.h" // for CTransaction::nMinTxFee and MAX_SCRIPTCHECK_THREADS #include "netbase.h" #include "txdb.h" // for -dbcache defaults @@ -37,6 +37,8 @@ OptionsDialog::OptionsDialog(QWidget *parent) : /* Main elements init */ ui->databaseCache->setMinimum(nMinDbCache); ui->databaseCache->setMaximum(nMaxDbCache); + ui->threadsScriptVerif->setMinimum(-(int)boost::thread::hardware_concurrency()); + ui->threadsScriptVerif->setMaximum(MAX_SCRIPTCHECK_THREADS); /* Network elements init */ #ifndef USE_UPNP |