Do not allow blockfile pruning during reindex.

Also clarify startup message.
This commit is contained in:
Alex Morcos
2015-10-19 14:43:04 -04:00
parent da7d57fb95
commit d3b09f6bac
2 changed files with 2 additions and 2 deletions

View File

@@ -1881,7 +1881,7 @@ bool static FlushStateToDisk(CValidationState &state, FlushStateMode mode) {
std::set<int> setFilesToPrune;
bool fFlushForPrune = false;
try {
if (fPruneMode && fCheckForPruning) {
if (fPruneMode && fCheckForPruning && !fReindex) {
FindFilesToPrune(setFilesToPrune);
fCheckForPruning = false;
if (!setFilesToPrune.empty()) {