Make RewindBlockIndex interruptible

This commit is contained in:
Pieter Wuille 2019-02-13 17:20:56 -08:00
parent 880ce7d46b
commit 241b2c74ac

View file

@ -4243,7 +4243,7 @@ bool CChainState::RewindBlockIndex(const CChainParams& params)
CValidationState state;
// Loop until the tip is below nHeight, or we reach a pruned block.
while (true) {
while (!ShutdownRequested()) {
{
LOCK(cs_main);
// Make sure nothing changed from under us (this won't happen because RewindBlockIndex runs before importing/network are active)