mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-25 08:21:24 +02:00
walletdb: Remove unsed boost/thread
This commit is contained in:
parent
5555d978b0
commit
fa7b885f51
@ -18,8 +18,6 @@
|
|||||||
#include <atomic>
|
#include <atomic>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include <boost/thread.hpp>
|
|
||||||
|
|
||||||
namespace DBKeys {
|
namespace DBKeys {
|
||||||
const std::string ACENTRY{"acentry"};
|
const std::string ACENTRY{"acentry"};
|
||||||
const std::string ACTIVEEXTERNALSPK{"activeexternalspk"};
|
const std::string ACTIVEEXTERNALSPK{"activeexternalspk"};
|
||||||
@ -738,11 +736,7 @@ DBErrors WalletBatch::LoadWallet(CWallet* pwallet)
|
|||||||
pwallet->WalletLogPrintf("%s\n", strErr);
|
pwallet->WalletLogPrintf("%s\n", strErr);
|
||||||
}
|
}
|
||||||
pcursor->close();
|
pcursor->close();
|
||||||
}
|
} catch (...) {
|
||||||
catch (const boost::thread_interrupted&) {
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
catch (...) {
|
|
||||||
result = DBErrors::CORRUPT;
|
result = DBErrors::CORRUPT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user