diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-11-05 14:01:18 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-11-05 14:00:03 -0500 |
commit | fa5facd3e72b6d61374b0b93b722b55e2b090020 (patch) | |
tree | 903376bb299c7a355da9d766bd858d4f4d91e6cf /src/rpc/blockchain.cpp | |
parent | 22e7eea629e27947fdd37f14b63f8349499ce4af (diff) |
rpc: Remove unused boost::this_thread::interruption_point
Diffstat (limited to 'src/rpc/blockchain.cpp')
-rw-r--r-- | src/rpc/blockchain.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index d08f852751..faed7d1317 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -38,8 +38,6 @@ #include <univalue.h> -#include <boost/thread/thread.hpp> // boost::thread::interrupt - #include <condition_variable> #include <memory> #include <mutex> @@ -1975,7 +1973,6 @@ bool FindScriptPubKey(std::atomic<int>& scan_progress, const std::atomic<bool>& Coin coin; if (!cursor->GetKey(key) || !cursor->GetValue(coin)) return false; if (++count % 8192 == 0) { - boost::this_thread::interruption_point(); if (should_abort) { // allow to abort the scan via the abort reference return false; |