walletdb: Remove unsed boost/thread

This commit is contained in:
MarcoFalke 2020-04-24 11:23:40 -04:00
parent 5555d978b0
commit fa7b885f51
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -18,8 +18,6 @@
#include <atomic>
#include <string>
#include <boost/thread.hpp>
namespace DBKeys {
const std::string ACENTRY{"acentry"};
const std::string ACTIVEEXTERNALSPK{"activeexternalspk"};
@ -738,11 +736,7 @@ DBErrors WalletBatch::LoadWallet(CWallet* pwallet)
pwallet->WalletLogPrintf("%s\n", strErr);
}
pcursor->close();
}
catch (const boost::thread_interrupted&) {
throw;
}
catch (...) {
} catch (...) {
result = DBErrors::CORRUPT;
}