net: remove thread_interrupted catch

This is now a std::thread, so there's no hope of catching a boost interruption
point.
This commit is contained in:
Cory Fields 2016-12-27 17:13:19 -05:00
parent d3d7056d2a
commit 5cb0fcee81
1 changed files with 0 additions and 3 deletions

View File

@ -2551,9 +2551,6 @@ bool ProcessMessages(CNode* pfrom, CConnman& connman, std::atomic<bool>& interru
PrintExceptionContinue(&e, "ProcessMessages()");
}
}
catch (const boost::thread_interrupted&) {
throw;
}
catch (const std::exception& e) {
PrintExceptionContinue(&e, "ProcessMessages()");
} catch (...) {