diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-03-11 17:05:36 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-03-16 14:29:06 +0300 |
commit | 5a4f099540750c5bf9c610b4550bc4e8cf25f176 (patch) | |
tree | 9e8f586eaa91849adbeccb27c37d8283490a4fde /src/wallet/wallet2.cpp | |
parent | changes in wallet2_api + implemented WalletManager::openWallet (diff) | |
download | monero-5a4f099540750c5bf9c610b4550bc4e8cf25f176.tar.xz |
Wallet::setPassword() method for wallet2_api
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r-- | src/wallet/wallet2.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 389286ceb..c4f60306b 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -2695,6 +2695,16 @@ bool wallet2::get_tx_key(const crypto::hash &txid, crypto::secret_key &tx_key) c return true; } +std::string wallet2::get_wallet_file() const +{ + return m_wallet_file; +} + +std::string wallet2::get_keys_file() const +{ + return m_keys_file; +} + //---------------------------------------------------------------------------------------------------- void wallet2::generate_genesis(cryptonote::block& b) { if (m_testnet) |