Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
blockchain: fix build after waiter::wait prototype change
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/cryptonote_core/blockchain.cpp
|
@@ -2745,7 +2745,7 @@ bool Blockchain::check_tx_inputs(transaction& tx, tx_verification_context &tvc, |
|
|
|
|
|
tools::threadpool& tpool = tools::threadpool::getInstance(); |
|
|
tools::threadpool::waiter waiter; |
|
|
const auto waiter_guard = epee::misc_utils::create_scope_leave_handler([&]() { waiter.wait(); }); |
|
|
const auto waiter_guard = epee::misc_utils::create_scope_leave_handler([&]() { waiter.wait(&tpool); }); |
|
|
int threads = tpool.get_max_concurrency(); |
|
|
|
|
|
for (const auto& txin : tx.vin) |
|
|