diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-08-26 17:41:03 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-26 17:41:33 +0200 |
| commit | d49b0876a4f4e5f8d7763fd2192f1efd0ddeec1e (patch) | |
| tree | 5394e31d833b3ae8d2cd925a88c12d4acb581b60 /src/keystore.h | |
| parent | Merge pull request #4649 (diff) | |
| parent | [Qt] Add column Watch-only to transactions list (diff) | |
| download | discoin-d49b0876a4f4e5f8d7763fd2192f1efd0ddeec1e.tar.xz discoin-d49b0876a4f4e5f8d7763fd2192f1efd0ddeec1e.zip | |
Merge pull request #4673
1c5f0af [Qt] Add column Watch-only to transactions list (Cozz Lovan)
939ed97 Add boolean HaveWatchonly and signal NotifyWatchonlyChanged (Cozz Lovan)
Diffstat (limited to 'src/keystore.h')
| -rw-r--r-- | src/keystore.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/keystore.h b/src/keystore.h index 6a3a0dc13..7aaf197cd 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -41,6 +41,7 @@ public: // Support for Watch-only addresses virtual bool AddWatchOnly(const CScript &dest) =0; virtual bool HaveWatchOnly(const CScript &dest) const =0; + virtual bool HaveWatchOnly() const =0; }; typedef std::map<CKeyID, CKey> KeyMap; @@ -98,6 +99,7 @@ public: virtual bool AddWatchOnly(const CScript &dest); virtual bool HaveWatchOnly(const CScript &dest) const; + virtual bool HaveWatchOnly() const; }; typedef std::vector<unsigned char, secure_allocator<unsigned char> > CKeyingMaterial; |