diff options
author | Andrew Chow <achow101-github@achow101.com> | 2019-06-06 09:53:01 +0200 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2019-07-03 19:43:02 -0400 |
commit | 1b699a5083b435c2b79f3951f94ac9f967d24f6c (patch) | |
tree | 3147f82544a1cbd3dbb645be255cebba788b140a /src/keystore.h | |
parent | 1381ddbcfcb6429b1327fd3db91ef97d8603aef9 (diff) |
Add HaveKey and HaveCScript to SigningProvider
Diffstat (limited to 'src/keystore.h')
-rw-r--r-- | src/keystore.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/keystore.h b/src/keystore.h index 4bd99e255d..fd2212afcb 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -23,12 +23,10 @@ public: virtual bool AddKeyPubKey(const CKey &key, const CPubKey &pubkey) =0; //! Check whether a key corresponding to a given address is present in the store. - virtual bool HaveKey(const CKeyID &address) const =0; virtual std::set<CKeyID> GetKeys() const =0; //! Support for BIP 0013 : see https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki virtual bool AddCScript(const CScript& redeemScript) =0; - virtual bool HaveCScript(const CScriptID &hash) const =0; virtual std::set<CScriptID> GetCScripts() const =0; //! Support for Watch-only addresses |