aboutsummaryrefslogtreecommitdiff
path: root/src/keystore.h
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2011-08-31 14:00:41 -0400
committerGavin Andresen <[email protected]>2011-08-31 14:00:41 -0400
commite3c26b2573c75850827558daf5f04594c1360296 (patch)
treeb59c3e5d7ec1ab9d874bb3a7a8c3fe90b266cd4d /src/keystore.h
parentFix typo ("you own security") (diff)
downloaddiscoin-e3c26b2573c75850827558daf5f04594c1360296.tar.xz
discoin-e3c26b2573c75850827558daf5f04594c1360296.zip
SetCrypted() obtains keystore lock, to be safe.
Diffstat (limited to 'src/keystore.h')
-rw-r--r--src/keystore.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/keystore.h b/src/keystore.h
index d1e4985d5..bbfac83d1 100644
--- a/src/keystore.h
+++ b/src/keystore.h
@@ -65,15 +65,7 @@ private:
bool fUseCrypto;
protected:
- bool SetCrypted()
- {
- if (fUseCrypto)
- return true;
- if (!mapKeys.empty())
- return false;
- fUseCrypto = true;
- return true;
- }
+ bool SetCrypted();
// will encrypt previously unencrypted keys
bool EncryptKeys(CKeyingMaterial& vMasterKeyIn);