aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.h
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2017-05-02 16:48:38 +0200
committerJaquee <jaquee.monero@gmail.com>2017-05-02 16:48:38 +0200
commitbbf4c21048f47d419a2e09e9d58c95328e1ee980 (patch)
treef15b600a3819db93506fdf3671b613584c2f738f /src/wallet/api/wallet.h
parentMerge pull request #1930 (diff)
downloadmonero-bbf4c21048f47d419a2e09e9d58c95328e1ee980.tar.xz
Wallet API: add spend/view key getters
Diffstat (limited to '')
-rw-r--r--src/wallet/api/wallet.h5
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;