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/api/wallet.cpp | |
parent | Merge pull request #2267 (diff) | |
download | monero-1307e3cc12ae85a68805bcdbb474ee4944084c1f.tar.xz |
WalletAPI: add getDefaultDataDir()
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r-- | src/wallet/api/wallet.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index a2bb44cfe..c0974f880 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -35,6 +35,7 @@ #include "transaction_history.h" #include "address_book.h" #include "common_defines.h" +#include "common/util.h" #include "mnemonics/electrum-words.h" #include <boost/format.hpp> @@ -1411,6 +1412,11 @@ bool WalletImpl::parse_uri(const std::string &uri, std::string &address, std::st return m_wallet->parse_uri(uri, address, payment_id, amount, tx_description, recipient_name, unknown_parameters, error); } +std::string WalletImpl::getDefaultDataDir() const +{ + return tools::get_default_data_dir(); +} + bool WalletImpl::rescanSpent() { clearStatus(); |