wallet2_api: implement stop() to interrupt refresh() loop once

This commit is contained in:
xiphon
2020-10-17 02:56:15 +00:00
parent bf65b07718
commit 70eb0d1844
3 changed files with 11 additions and 0 deletions

View File

@@ -910,6 +910,11 @@ std::string WalletImpl::path() const
return m_wallet->path();
}
void WalletImpl::stop()
{
m_wallet->stop();
}
bool WalletImpl::store(const std::string &path)
{
clearStatus();