We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5555d97 commit fa7b885Copy full SHA for fa7b885
src/wallet/walletdb.cpp
@@ -18,8 +18,6 @@
18
#include <atomic>
19
#include <string>
20
21
-#include <boost/thread.hpp>
22
-
23
namespace DBKeys {
24
const std::string ACENTRY{"acentry"};
25
const std::string ACTIVEEXTERNALSPK{"activeexternalspk"};
@@ -738,11 +736,7 @@ DBErrors WalletBatch::LoadWallet(CWallet* pwallet)
738
736
pwallet->WalletLogPrintf("%s\n", strErr);
739
737
}
740
pcursor->close();
741
- }
742
- catch (const boost::thread_interrupted&) {
743
- throw;
744
745
- catch (...) {
+ } catch (...) {
746
result = DBErrors::CORRUPT;
747
748
0 commit comments