diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-03-25 17:06:30 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-03-25 17:06:30 +0300 |
commit | 8790904cf9ccba56a1cbab51b01f2cbb0a5cb143 (patch) | |
tree | 119b5c86a03d2ee3f02b67228400d92777f672b0 /src/wallet/wallet2.cpp | |
parent | wallet2::store() implemented within wallet2::store_to (diff) | |
download | monero-8790904cf9ccba56a1cbab51b01f2cbb0a5cb143.tar.xz |
- testnet option added to api;
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 9592810e7..f263346a7 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -2761,6 +2761,11 @@ std::string wallet2::get_keys_file() const return m_keys_file; } +std::string wallet2::get_daemon_address() const +{ + return m_daemon_address; +} + //---------------------------------------------------------------------------------------------------- void wallet2::generate_genesis(cryptonote::block& b) { if (m_testnet) |