From f4893863be4063b437d8fc42ee4a98ceff1058b9 Mon Sep 17 00:00:00 2001 From: sowle Date: Wed, 19 Feb 2020 16:12:52 +0300 Subject: [PATCH] exceptions handling in wallets_manager dtor --- src/wallet/wallets_manager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wallet/wallets_manager.cpp b/src/wallet/wallets_manager.cpp index 30b16176..49e036ef 100644 --- a/src/wallet/wallets_manager.cpp +++ b/src/wallet/wallets_manager.cpp @@ -66,7 +66,9 @@ void wallet_lock_time_watching_policy::watch_lock_time(uint64_t lock_time) wallets_manager::~wallets_manager() { + TRY_ENTRY(); stop(); + CATCH_ENTRY_NO_RETURN(); } void terminate_handler_func()