aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2020-10-17 02:56:15 +0000
committerxiphon <xiphon@protonmail.com>2020-10-17 02:56:15 +0000
commit70eb0d1844258e491f0d22866b8029e66846a482 (patch)
tree98a6adccb7d1e6c6876278e7297685561c7d5b82 /src/wallet/api/wallet.cpp
parentMerge pull request #6867 (diff)
downloadmonero-70eb0d1844258e491f0d22866b8029e66846a482.tar.xz
wallet2_api: implement stop() to interrupt refresh() loop once
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r--src/wallet/api/wallet.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index 152a7dcd7..9acc8484c 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -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();