Browse Source

Move RewindBlockIndex log message inside rewindLength check

metaverse
Jack Grigg 6 years ago
parent
commit
13751895c7
No known key found for this signature in database GPG Key ID: 1B8D649257DB0829
  1. 2
      src/main.cpp

2
src/main.cpp

@ -4249,10 +4249,10 @@ bool RewindBlockIndex(const CChainParams& params, bool& clearWitnessCaches)
// nHeight is now the height of the first insufficiently-validated block, or tipheight + 1
auto rewindLength = chainActive.Height() - nHeight;
LogPrintf("*** First insufficiently validated block at height %d, rewind length %d\n", nHeight, rewindLength);
clearWitnessCaches = false;
if (rewindLength > 0) {
LogPrintf("*** First insufficiently validated block at height %d, rewind length %d\n", nHeight, rewindLength);
const uint256 *phashFirstInsufValidated = chainActive[nHeight]->phashBlock;
auto networkID = params.NetworkIDString();

Loading…
Cancel
Save