fix GetScriptForMining() CReserveKey::keepKey() issue

This commit is contained in:
Jonas Schnelli 2015-06-24 21:51:47 +02:00
parent d0fc10a844
commit 087e65def9
1 changed files with 1 additions and 2 deletions

View File

@ -2586,12 +2586,11 @@ void CWallet::UpdatedTransaction(const uint256 &hashTx)
void CWallet::GetScriptForMining(CScript &script)
{
CReserveKey reservekey(this);
reservekey.KeepKey();
CPubKey pubkey;
if (!reservekey.GetReservedKey(pubkey))
return;
script = CScript() << ToByteVector(pubkey) << OP_CHECKSIG;
reservekey.KeepKey();
}
void CWallet::LockCoin(COutPoint& output)