Make RewindBlockIndex interruptible
This commit is contained in:
parent
880ce7d46b
commit
241b2c74ac
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue