diff options
author | tobtoht <thotbot@protonmail.com> | 2021-06-04 18:59:33 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-08-07 03:03:40 +0200 |
commit | d188b5f51f088d5740b0c9a8dda99bc2ee92b51b (patch) | |
tree | 78e42aaa6c0dde91fcc30d2172faed1964c98d0a /src/wallet/api/wallet2_api.h | |
parent | depends, docker: fix bintray links (diff) | |
download | monero-d188b5f51f088d5740b0c9a8dda99bc2ee92b51b.tar.xz |
wallet_api: getPassword
Diffstat (limited to '')
-rw-r--r-- | src/wallet/api/wallet2_api.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index e34332734..35516b35d 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -456,6 +456,7 @@ struct Wallet //! returns both error and error string atomically. suggested to use in instead of status() and errorString() virtual void statusWithErrorString(int& status, std::string& errorString) const = 0; virtual bool setPassword(const std::string &password) = 0; + virtual const std::string& getPassword() const = 0; virtual bool setDevicePin(const std::string &pin) { (void)pin; return false; }; virtual bool setDevicePassphrase(const std::string &passphrase) { (void)passphrase; return false; }; virtual std::string address(uint32_t accountIndex = 0, uint32_t addressIndex = 0) const = 0; |