mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-06 05:32:08 +02:00
Removed redundant IsLocked() check in NewKeyPool()
This commit is contained in:
@ -2899,10 +2899,9 @@ bool CWallet::NewKeyPool()
|
|||||||
walletdb.ErasePool(nIndex);
|
walletdb.ErasePool(nIndex);
|
||||||
setKeyPool.clear();
|
setKeyPool.clear();
|
||||||
|
|
||||||
if (IsLocked())
|
if (!TopUpKeyPool()) {
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
TopUpKeyPool();
|
|
||||||
LogPrintf("CWallet::NewKeyPool rewrote keypool\n");
|
LogPrintf("CWallet::NewKeyPool rewrote keypool\n");
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user