diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-04-29 20:14:27 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-04-29 20:14:27 +0200 |
commit | 4bcd5bb87d5725a3e4f267d2c637177c311559f9 (patch) | |
tree | 6425080bc6e82c9bfd64700bb572fdbc88e3e6cb /src/wallet | |
parent | 3315007e03f5cc6c89a221ec7e0bc09a89858304 (diff) |
Add locking annotations for variables guarded by cs_KeyStore
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/crypter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/crypter.h b/src/wallet/crypter.h index 4c0c8ff5ec..b0a75b7020 100644 --- a/src/wallet/crypter.h +++ b/src/wallet/crypter.h @@ -116,7 +116,7 @@ class CCryptoKeyStore : public CBasicKeyStore { private: - CKeyingMaterial vMasterKey; + CKeyingMaterial vMasterKey GUARDED_BY(cs_KeyStore); //! if fUseCrypto is true, mapKeys must be empty //! if fUseCrypto is false, vMasterKey must be empty @@ -132,7 +132,7 @@ protected: bool EncryptKeys(CKeyingMaterial& vMasterKeyIn); bool Unlock(const CKeyingMaterial& vMasterKeyIn); - CryptedKeyMap mapCryptedKeys; + CryptedKeyMap mapCryptedKeys GUARDED_BY(cs_KeyStore); public: CCryptoKeyStore() : fUseCrypto(false), fDecryptionThoroughlyChecked(false) |