aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@bitpay.com>2013-05-30 08:01:22 -0700
committerJeff Garzik <jgarzik@bitpay.com>2013-05-30 08:01:22 -0700
commit9c95a2e836f7f92b6e446e4dfd3362aa7274bec9 (patch)
tree3628dc2161b3fd447d23753b0b51892a5900be4f /src/wallet.cpp
parente2f42142a03fa817a7fe6529fc1d55ef2d016352 (diff)
parent92f2c1fe0fe2905540b0435188988851145f92be (diff)
downloadbitcoin-9c95a2e836f7f92b6e446e4dfd3362aa7274bec9.tar.xz
Merge pull request #2625 from gavinandresen/walletlock_asio
Use boost::asio::deadline_timer for walletpassphrase timeout
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r--src/wallet.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 5efc455839..b49f690979 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -89,9 +89,6 @@ bool CWallet::AddCScript(const CScript& redeemScript)
bool CWallet::Unlock(const SecureString& strWalletPassphrase)
{
- if (!IsLocked())
- return false;
-
CCrypter crypter;
CKeyingMaterial vMasterKey;
@@ -102,7 +99,7 @@ bool CWallet::Unlock(const SecureString& strWalletPassphrase)
if(!crypter.SetKeyFromPassphrase(strWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
return false;
if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
- return false;
+ continue; // try another master key
if (CCryptoKeyStore::Unlock(vMasterKey))
return true;
}