diff options
| author | Cory Fields <[email protected]> | 2016-12-27 17:13:19 -0500 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2017-01-03 17:56:21 -0500 |
| commit | 5cb0fcee8137d6de8d2b9525aa45fd11ab2231c8 (patch) | |
| tree | e922306ddea2d69cf8e6a547880c1631c9a6027a /src/net_processing.cpp | |
| parent | net: make net processing interruptible (diff) | |
| download | discoin-5cb0fcee8137d6de8d2b9525aa45fd11ab2231c8.tar.xz discoin-5cb0fcee8137d6de8d2b9525aa45fd11ab2231c8.zip | |
net: remove thread_interrupted catch
This is now a std::thread, so there's no hope of catching a boost interruption
point.
Diffstat (limited to 'src/net_processing.cpp')
| -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 f3a04080d..e0c12d853 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 (...) { |