diff options
| author | Jonas Schnelli <[email protected]> | 2016-10-19 17:07:42 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2016-10-19 17:08:17 +0200 |
| commit | 3e942a7060fed368f82add85177337361f6e8edd (patch) | |
| tree | af2630502fe8a876346307c65398b55d33098085 /src/qt/walletmodel.h | |
| parent | Merge #7948: RPC: augment getblockchaininfo bip9_softforks data (diff) | |
| parent | Qt/splash: Specifically keep track of which wallet(s) we are connected to for... (diff) | |
| download | discoin-3e942a7060fed368f82add85177337361f6e8edd.tar.xz discoin-3e942a7060fed368f82add85177337361f6e8edd.zip | |
Merge #8774: Qt refactors to better abstract wallet access
178cd88 Qt/splash: Specifically keep track of which wallet(s) we are connected to for later disconnecting (Luke Dashjr)
1880aeb Qt: Get the private key for signing messages via WalletModel (Luke Dashjr)
Diffstat (limited to 'src/qt/walletmodel.h')
| -rw-r--r-- | src/qt/walletmodel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index b105c6d99..cdac60da3 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -187,6 +187,7 @@ public: bool getPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const; bool havePrivKey(const CKeyID &address) const; + bool getPrivKey(const CKeyID &address, CKey& vchPrivKeyOut) const; void getOutputs(const std::vector<COutPoint>& vOutpoints, std::vector<COutput>& vOutputs); bool isSpent(const COutPoint& outpoint) const; void listCoins(std::map<QString, std::vector<COutput> >& mapCoins) const; |