diff --git a/src/keystore.h b/src/keystore.h index 8dd2772f283..f64024c7e7f 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -38,17 +38,17 @@ public: virtual bool HaveWatchOnly() const =0; }; -typedef std::map KeyMap; -typedef std::map WatchKeyMap; -typedef std::map ScriptMap; -typedef std::set WatchOnlySet; - /** Basic key store, that keeps keys in an address->secret map */ class CBasicKeyStore : public CKeyStore { protected: mutable CCriticalSection cs_KeyStore; + using KeyMap = std::map; + using WatchKeyMap = std::map; + using ScriptMap = std::map; + using WatchOnlySet = std::set; + KeyMap mapKeys GUARDED_BY(cs_KeyStore); WatchKeyMap mapWatchKeys GUARDED_BY(cs_KeyStore); ScriptMap mapScripts GUARDED_BY(cs_KeyStore); @@ -74,9 +74,6 @@ public: bool HaveWatchOnly() const override; }; -typedef std::vector > CKeyingMaterial; -typedef std::map > > CryptedKeyMap; - /** Return the CKeyID of the key involved in a script (if there is a unique one). */ CKeyID GetKeyForDestination(const CKeyStore& store, const CTxDestination& dest); diff --git a/src/wallet/crypter.h b/src/wallet/crypter.h index b0a75b70209..52842cd9786 100644 --- a/src/wallet/crypter.h +++ b/src/wallet/crypter.h @@ -126,6 +126,8 @@ private: bool fDecryptionThoroughlyChecked; protected: + using CryptedKeyMap = std::map>>; + bool SetCrypted(); //! will encrypt previously unencrypted keys