diff options
Diffstat (limited to 'src/keystore.h')
-rw-r--r-- | src/keystore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keystore.h b/src/keystore.h index 3e46acda1d..98209d4a43 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -16,7 +16,7 @@ #include <boost/signals2/signal.hpp> /** Basic key store, that keeps keys in an address->secret map */ -class CBasicKeyStore : public SigningProvider +class FillableSigningProvider : public SigningProvider { protected: mutable CCriticalSection cs_KeyStore; @@ -52,6 +52,6 @@ public: }; /** Return the CKeyID of the key involved in a script (if there is a unique one). */ -CKeyID GetKeyForDestination(const CBasicKeyStore& store, const CTxDestination& dest); +CKeyID GetKeyForDestination(const FillableSigningProvider& store, const CTxDestination& dest); #endif // BITCOIN_KEYSTORE_H |