diff --git a/src/wallet/bdb.cpp b/src/wallet/bdb.cpp --- a/src/wallet/bdb.cpp +++ b/src/wallet/bdb.cpp @@ -9,8 +9,6 @@ #include #include -#include // boost::this_thread::interruption_point() (mingw) - #include #ifndef WIN32 #include @@ -722,7 +720,6 @@ } if (nRefCount == 0) { - boost::this_thread::interruption_point(); std::map::iterator mi = env->mapFileUseCount.find(strFile); if (mi != env->mapFileUseCount.end()) { diff --git a/src/wallet/walletdb.cpp b/src/wallet/walletdb.cpp --- a/src/wallet/walletdb.cpp +++ b/src/wallet/walletdb.cpp @@ -715,8 +715,6 @@ } } pcursor->close(); - } catch (const boost::thread_interrupted &) { - throw; } catch (...) { result = DBErrors::CORRUPT; } @@ -866,8 +864,6 @@ } } pcursor->close(); - } catch (const boost::thread_interrupted &) { - throw; } catch (...) { result = DBErrors::CORRUPT; }