wallet2::store() implemented within wallet2::store_to

This commit is contained in:
Ilya Kitaev
2016-03-21 16:17:03 +03:00
parent de91bb75a1
commit 94eaeb50b2
4 changed files with 87 additions and 69 deletions

View File

@@ -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 //////////////////////