Add returns to avoid annoying compile-time warnings.

This commit is contained in:
Matt Corallo
2011-10-10 15:51:07 -04:00
committed by Luke Dashjr
parent ed176ba584
commit ef4280e08b
2 changed files with 2 additions and 0 deletions

View File

@@ -40,6 +40,7 @@ bool CWallet::AddCryptedKey(const vector<unsigned char> &vchPubKey, const vector
else
return CWalletDB(strWalletFile).WriteCryptedKey(vchPubKey, vchCryptedSecret);
}
return false;
}
bool CWallet::Unlock(const string& strWalletPassphrase)