diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2016-12-27 17:13:19 -0500 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2017-01-03 17:56:21 -0500 |
commit | 5cb0fcee8137d6de8d2b9525aa45fd11ab2231c8 (patch) | |
tree | e922306ddea2d69cf8e6a547880c1631c9a6027a | |
parent | d3d7056d2a562301b3770c4ede1dfc8ffb00cf4b (diff) |
net: remove thread_interrupted catch
This is now a std::thread, so there's no hope of catching a boost interruption
point.
-rw-r--r-- | src/net_processing.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/net_processing.cpp b/src/net_processing.cpp index f3a04080d1..e0c12d8530 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -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 (...) { |