diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-03-21 16:17:03 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-06-23 15:40:48 +0300 |
| commit | 94eaeb50b27826405e49899f912f9822bac5876f (patch) | |
| tree | 5534e4397475f739899452bd7fbc87b6ddfab44a /src/wallet/wallet2_api.cpp | |
| parent | de91bb75a1669dc1d5baf5a48379cf1d63707c76 (diff) | |
| download | monzero-core-94eaeb50b27826405e49899f912f9822bac5876f.tar.gz monzero-core-94eaeb50b27826405e49899f912f9822bac5876f.tar.xz monzero-core-94eaeb50b27826405e49899f912f9822bac5876f.zip | |
wallet2::store() implemented within wallet2::store_to
Diffstat (limited to 'src/wallet/wallet2_api.cpp')
| -rw-r--r-- | src/wallet/wallet2_api.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wallet/wallet2_api.cpp b/src/wallet/wallet2_api.cpp index 0644e3690..cf1a2bf24 100644 --- a/src/wallet/wallet2_api.cpp +++ b/src/wallet/wallet2_api.cpp @@ -276,6 +276,7 @@ public: virtual bool closeWallet(Wallet *wallet); bool walletExists(const std::string &path); std::string errorString() const; + void setDaemonHost(const std::string &hostname); private: @@ -329,6 +330,11 @@ std::string WalletManagerImpl::errorString() const return m_errorString; } +void WalletManagerImpl::setDaemonHost(const std::string &hostname) +{ + +} + ///////////////////// WalletManagerFactory implementation ////////////////////// |
