Skip to content

Commit fa7b885

Browse files
author
MarcoFalke
committed
walletdb: Remove unsed boost/thread
1 parent 5555d97 commit fa7b885

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/wallet/walletdb.cpp

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
#include <atomic>
1919
#include <string>
2020

21-
#include <boost/thread.hpp>
22-
2321
namespace DBKeys {
2422
const std::string ACENTRY{"acentry"};
2523
const std::string ACTIVEEXTERNALSPK{"activeexternalspk"};
@@ -738,11 +736,7 @@ DBErrors WalletBatch::LoadWallet(CWallet* pwallet)
738736
pwallet->WalletLogPrintf("%s\n", strErr);
739737
}
740738
pcursor->close();
741-
}
742-
catch (const boost::thread_interrupted&) {
743-
throw;
744-
}
745-
catch (...) {
739+
} catch (...) {
746740
result = DBErrors::CORRUPT;
747741
}
748742

0 commit comments

Comments
 (0)