diff options
| author | Andrew Chow <[email protected]> | 2019-06-06 16:33:23 +0200 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2019-07-09 16:20:18 -0400 |
| commit | d9becff4e13da8e182631baa79b9794c03d44434 (patch) | |
| tree | 8b793f84bd72bd11b9753a1591f811fefafe1da2 /src/keystore.h | |
| parent | Move HaveKey static function from keystore to rpcwallet where it is used (diff) | |
| download | discoin-d9becff4e13da8e182631baa79b9794c03d44434.tar.xz discoin-d9becff4e13da8e182631baa79b9794c03d44434.zip | |
scripted-diff: rename CBasicKeyStore to FillableSigningProvider
-BEGIN VERIFY SCRIPT-
git grep -l "CBasicKeyStore" | xargs sed -i -e 's/CBasicKeyStore/FillableSigningProvider/g'
-END VERIFY SCRIPT-
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 3e46acda1..98209d4a4 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 |