diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-05-05 11:35:03 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-05-05 11:35:03 +0200 |
commit | 81b370d5a13c798ca22f8c5c889f0e3b26da20d3 (patch) | |
tree | c1675173d0e24f7fdca885b0a94f52e5d1c0248b /src/wallet/api/wallet.h | |
parent | Merge pull request #2009 (diff) | |
parent | Wallet API: add spend/view key getters (diff) | |
download | monero-81b370d5a13c798ca22f8c5c889f0e3b26da20d3.tar.xz |
Merge pull request #2012
bbf4c210 Wallet API: add spend/view key getters (Jaquee)
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r-- | src/wallet/api/wallet.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index c376dd6c1..e9e2cc580 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -73,7 +73,10 @@ public: bool setPassword(const std::string &password); std::string address() const; std::string integratedAddress(const std::string &payment_id) const; - std::string privateViewKey() const; + std::string secretViewKey() const; + std::string publicViewKey() const; + std::string secretSpendKey() const; + std::string publicSpendKey() const; std::string path() const; bool store(const std::string &path); std::string filename() const; |