Skip to content

Commit faa958b

Browse files
author
MarcoFalke
committed
txindex: Remove unused boost/thread
1 parent 584170a commit faa958b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/index/txindex.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
#include <util/translation.h>
1010
#include <validation.h>
1111

12-
#include <boost/thread.hpp>
13-
1412
constexpr char DB_BEST_BLOCK = 'B';
1513
constexpr char DB_TXINDEX = 't';
1614
constexpr char DB_TXINDEX_BLOCK = 'T';
@@ -150,7 +148,6 @@ bool TxIndex::DB::MigrateData(CBlockTreeDB& block_tree_db, const CBlockLocator&
150148
bool interrupted = false;
151149
std::unique_ptr<CDBIterator> cursor(block_tree_db.NewIterator());
152150
for (cursor->Seek(begin_key); cursor->Valid(); cursor->Next()) {
153-
boost::this_thread::interruption_point();
154151
if (ShutdownRequested()) {
155152
interrupted = true;
156153
break;

0 commit comments

Comments
 (0)