We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ddeb2f commit 8a33f4dCopy full SHA for 8a33f4d
src/qt/optionsdialog.cpp
@@ -150,7 +150,7 @@ void OptionsDialog::setModel(OptionsModel *_model)
150
151
// Prune values are in GB to be consistent with intro.cpp
152
static constexpr uint64_t nMinDiskSpace = (MIN_DISK_SPACE_FOR_BLOCK_FILES / GB_BYTES) + (MIN_DISK_SPACE_FOR_BLOCK_FILES % GB_BYTES) ? 1 : 0;
153
- ui->pruneSize->setRange(nMinDiskSpace, _model->node().getAssumedBlockchainSize());
+ ui->pruneSize->setRange(nMinDiskSpace, std::numeric_limits<int>::max());
154
155
QString strLabel = _model->getOverriddenByCommandLine();
156
if (strLabel.isEmpty())
0 commit comments