diff options
author | Jaquee <jaquee.monero@gmail.com> | 2017-08-09 12:38:29 +0200 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2017-08-09 12:38:29 +0200 |
commit | 1307e3cc12ae85a68805bcdbb474ee4944084c1f (patch) | |
tree | aafa10c43722d4c74b376ee4aa515e6f5e70024b /src/wallet/wallet2_api.h | |
parent | Merge pull request #2267 (diff) | |
download | monero-1307e3cc12ae85a68805bcdbb474ee4944084c1f.tar.xz |
WalletAPI: add getDefaultDataDir()
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2_api.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index ce431ee6b..c12f8e5d2 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -596,6 +596,9 @@ struct Wallet virtual bool verifySignedMessage(const std::string &message, const std::string &addres, const std::string &signature) const = 0; virtual bool parse_uri(const std::string &uri, std::string &address, std::string &payment_id, uint64_t &amount, std::string &tx_description, std::string &recipient_name, std::vector<std::string> &unknown_parameters, std::string &error) = 0; + + virtual std::string getDefaultDataDir() const = 0; + /* * \brief rescanSpent - Rescan spent outputs - Can only be used with trusted daemon * \return true on success |