Browse Source

Merge #9624: [Trivial] fix logging typo in FlushStateToDisk()

ac9a846 [Trivial] fix logging typo in FlushStateToDisk() (John Newbery)
0.14
Jonas Schnelli 8 years ago
parent
commit
b68f898efa
No known key found for this signature in database
GPG Key ID: 29D4BCB6416F53EC
  1. 2
      src/validation.cpp

2
src/validation.cpp

@ -2061,7 +2061,7 @@ bool static FlushStateToDisk(CValidationState &state, FlushStateMode mode, int n @@ -2061,7 +2061,7 @@ bool static FlushStateToDisk(CValidationState &state, FlushStateMode mode, int n
setDirtyBlockIndex.erase(it++);
}
if (!pblocktree->WriteBatchSync(vFiles, nLastBlockFile, vBlocks)) {
return AbortNode(state, "Files to write to block index database");
return AbortNode(state, "Failed to write to block index database");
}
}
// Finally remove any pruned files

Loading…
Cancel
Save