aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-06-27 20:17:25 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-06-27 20:17:25 -0500
commit4c6de54ee2f820df2d406e4c9e99a4f66591db6c (patch)
treee66ff46fa25d07d83dd884203b7687eac2141630 /src/wallet/api
parentMerge pull request #4066 (diff)
parentwallet: prevent the same wallet file from being opened by multiple processes (diff)
downloadmonero-4c6de54ee2f820df2d406e4c9e99a4f66591db6c.tar.xz
Merge pull request #3994
1d17647 epee.string_tools: add conversion between UTF-8 and UTF-16 (stoffu) 59de6f8 util: add file_locker class (stoffu) 3d623a8 wallet: prevent the same wallet file from being opened by multiple processes (stoffu)
Diffstat (limited to 'src/wallet/api')
-rw-r--r--src/wallet/api/wallet.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index c7dbd29e4..e2c4fe7af 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -721,6 +721,7 @@ bool WalletImpl::close(bool store)
LOG_PRINT_L1("Calling wallet::stop...");
m_wallet->stop();
LOG_PRINT_L1("wallet::stop done");
+ m_wallet->deinit();
result = true;
clearStatus();
} catch (const std::exception &e) {