aboutsummaryrefslogtreecommitdiff
path: root/src/validation.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2019-02-24 12:54:53 -0800
committerPieter Wuille <pieter.wuille@gmail.com>2019-02-24 18:41:13 -0800
commit1d342875c21b5d0a17cf4d176063bb14b35b657e (patch)
tree34d486f0742b60c1ddb8ce3905089f6dc400dea3 /src/validation.cpp
parent32b2696ab4b079db736074b57bbc24deaee0b3d9 (diff)
downloadbitcoin-1d342875c21b5d0a17cf4d176063bb14b35b657e.tar.xz
Merge the disconnection and erasing loops in RewindBlockIndex
Diffstat (limited to 'src/validation.cpp')
-rw-r--r--src/validation.cpp39
1 files changed, 21 insertions, 18 deletions
diff --git a/src/validation.cpp b/src/validation.cpp
index a2d97299e9..040994c7ce 100644
--- a/src/validation.cpp
+++ b/src/validation.cpp
@@ -4234,10 +4234,13 @@ bool CChainState::RewindBlockIndex(const CChainParams& params)
// nHeight is now the height of the first insufficiently-validated block, or tipheight + 1
CValidationState state;
- CBlockIndex* pindex = chainActive.Tip();
- CBlockIndex* tip = pindex;
- while (chainActive.Height() >= nHeight) {
- if (fPruneMode && !(chainActive.Tip()->nStatus & BLOCK_HAVE_DATA)) {
+ CBlockIndex* tip = chainActive.Tip();
+ // Loop until the tip is below nHeight, or we reach a pruned block.
+ while (true) {
+ // Make sure nothing changed from under us (this won't happen because RewindBlockIndex runs before importing/network are active)
+ assert(tip == chainActive.Tip());
+ if (tip == nullptr || tip->nHeight < nHeight) break;
+ if (fPruneMode && !(tip->nStatus & BLOCK_HAVE_DATA)) {
// If pruning, don't try rewinding past the HAVE_DATA point;
// since older blocks can't be served anyway, there's
// no need to walk further, and trying to DisconnectTip()
@@ -4245,29 +4248,29 @@ bool CChainState::RewindBlockIndex(const CChainParams& params)
// of the blockchain).
break;
}
+
+ // Disconnect block
if (!DisconnectTip(state, params, nullptr)) {
- return error("RewindBlockIndex: unable to disconnect block at height %i (%s)", pindex->nHeight, FormatStateMessage(state));
- }
- // Occasionally flush state to disk.
- if (!FlushStateToDisk(params, state, FlushStateMode::PERIODIC)) {
- LogPrintf("RewindBlockIndex: unable to flush state to disk (%s)\n", FormatStateMessage(state));
- return false;
+ return error("RewindBlockIndex: unable to disconnect block at height %i (%s)", tip->nHeight, FormatStateMessage(state));
}
- }
- // Reduce validity flag and have-data flags.
- // We do this after actual disconnecting, otherwise we'll end up writing the lack of data
- // to disk before writing the chainstate, resulting in a failure to continue if interrupted.
- while (tip->nHeight > chainActive.Height()) {
+ // Reduce validity flag and have-data flags.
+ // We do this after actual disconnecting, otherwise we'll end up writing the lack of data
+ // to disk before writing the chainstate, resulting in a failure to continue if interrupted.
// Note: If we encounter an insufficiently validated block that
// is on chainActive, it must be because we are a pruning node, and
// this block or some successor doesn't HAVE_DATA, so we were unable to
// rewind all the way. Blocks remaining on chainActive at this point
// must not have their validity reduced.
- if (IsWitnessEnabled(tip->pprev, params.GetConsensus()) && !(tip->nStatus & BLOCK_OPT_WITNESS)) {
- EraseBlockData(tip);
- }
+ EraseBlockData(tip);
+
tip = tip->pprev;
+
+ // Occasionally flush state to disk.
+ if (!FlushStateToDisk(params, state, FlushStateMode::PERIODIC)) {
+ LogPrintf("RewindBlockIndex: unable to flush state to disk (%s)\n", FormatStateMessage(state));
+ return false;
+ }
}
if (chainActive.Tip() != nullptr) {