File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 16
16
17
17
#include < stdint.h>
18
18
19
- #include < boost/thread.hpp>
20
-
21
19
static const char DB_COIN = ' C' ;
22
20
static const char DB_COINS = ' c' ;
23
21
static const char DB_BLOCK_FILES = ' f' ;
@@ -242,7 +240,6 @@ bool CBlockTreeDB::LoadBlockIndexGuts(const Consensus::Params& consensusParams,
242
240
243
241
// Load m_block_index
244
242
while (pcursor->Valid ()) {
245
- boost::this_thread::interruption_point ();
246
243
if (ShutdownRequested ()) return false ;
247
244
std::pair<char , uint256> key;
248
245
if (pcursor->GetKey (key) && key.first == DB_BLOCK_INDEX) {
@@ -354,7 +351,6 @@ bool CCoinsViewDB::Upgrade() {
354
351
std::pair<unsigned char , uint256> key;
355
352
std::pair<unsigned char , uint256> prev_key = {DB_COINS, uint256 ()};
356
353
while (pcursor->Valid ()) {
357
- boost::this_thread::interruption_point ();
358
354
if (ShutdownRequested ()) {
359
355
break ;
360
356
}
You can’t perform that action at this time.
0 commit comments