diff options
| author | MarcoFalke <[email protected]> | 2019-11-05 14:01:18 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-11-05 14:00:03 -0500 |
| commit | fa5facd3e72b6d61374b0b93b722b55e2b090020 (patch) | |
| tree | 903376bb299c7a355da9d766bd858d4f4d91e6cf /src/node/coinstats.cpp | |
| parent | Merge #17363: test: add "diamond" unit test to MempoolAncestryTests (diff) | |
| download | discoin-fa5facd3e72b6d61374b0b93b722b55e2b090020.tar.xz discoin-fa5facd3e72b6d61374b0b93b722b55e2b090020.zip | |
rpc: Remove unused boost::this_thread::interruption_point
Diffstat (limited to 'src/node/coinstats.cpp')
| -rw-r--r-- | src/node/coinstats.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/node/coinstats.cpp b/src/node/coinstats.cpp index 57fa158ad..049868736 100644 --- a/src/node/coinstats.cpp +++ b/src/node/coinstats.cpp @@ -14,9 +14,6 @@ #include <map> -#include <boost/thread.hpp> - - static void ApplyStats(CCoinsStats &stats, CHashWriter& ss, const uint256& hash, const std::map<uint32_t, Coin>& outputs) { assert(!outputs.empty()); @@ -51,7 +48,6 @@ bool GetUTXOStats(CCoinsView *view, CCoinsStats &stats) uint256 prevkey; std::map<uint32_t, Coin> outputs; while (pcursor->Valid()) { - boost::this_thread::interruption_point(); COutPoint key; Coin coin; if (pcursor->GetKey(key) && pcursor->GetValue(coin)) { |