Skip to content

Commit 5cb0fce

Browse files
committed
net: remove thread_interrupted catch
This is now a std::thread, so there's no hope of catching a boost interruption point.
1 parent d3d7056 commit 5cb0fce

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/net_processing.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2551,9 +2551,6 @@ bool ProcessMessages(CNode* pfrom, CConnman& connman, std::atomic<bool>& interru
25512551
PrintExceptionContinue(&e, "ProcessMessages()");
25522552
}
25532553
}
2554-
catch (const boost::thread_interrupted&) {
2555-
throw;
2556-
}
25572554
catch (const std::exception& e) {
25582555
PrintExceptionContinue(&e, "ProcessMessages()");
25592556
} catch (...) {

0 commit comments

Comments
 (0)