diff options
| author | Wladimir J. van der Laan <[email protected]> | 2018-12-07 15:38:09 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2018-12-07 15:40:50 +0100 |
| commit | b8b0b8ced7fa918ae00b697e5696b1950dfb714c (patch) | |
| tree | 22357c7b1f310edaf2fc58d81e50821411098c18 /src/validation.cpp | |
| parent | Merge #14863: refactor: Add and use HaveTxsDownloaded() where appropriate (diff) | |
| parent | refactor: Drop boost::this_thread::interruption_point and boost::thread_inter... (diff) | |
| download | discoin-b8b0b8ced7fa918ae00b697e5696b1950dfb714c.tar.xz discoin-b8b0b8ced7fa918ae00b697e5696b1950dfb714c.zip | |
Merge #14480: refactor: Drop boost::this_thread::interruption_point and boost::thread_interrupted in main thread
b7df96f4565064bcb7cbbf7e2507e03bdcf339f0 refactor: Drop boost::this_thread::interruption_point and boost::thread_interrupted in main thread (Chun Kuan Lee)
Pull request description:
This PR drops useless `boost::this_thread::interruption_point` and `boost::thread_interrupted` catch. They are only executed in main thread.
Tree-SHA512: a980d098c1a8238e4f0da9493731d7e69b9ca8e010103f442722d0d4cce471cc40a1fafd5f05535ad0e18899b6cf7563ee20e4025f7c7bc15182a0058c028922
Diffstat (limited to 'src/validation.cpp')
| -rw-r--r-- | src/validation.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index 0543804e3..e92cbf1b8 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -3819,8 +3819,6 @@ bool CChainState::LoadBlockIndex(const Consensus::Params& consensus_params, CBlo if (!blocktree.LoadBlockIndexGuts(consensus_params, [this](const uint256& hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main) { return this->InsertBlockIndex(hash); })) return false; - boost::this_thread::interruption_point(); - // Calculate nChainWork std::vector<std::pair<int, CBlockIndex*> > vSortedByHeight; vSortedByHeight.reserve(mapBlockIndex.size()); |