From 18a9fd10086fada1de351d198ce885527b2fd8b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CMariusz=20Trela=E2=80=9D?= Date: Fri, 27 Oct 2023 12:50:06 +0200 Subject: [PATCH] The thread_pool fix - lack of `enqueue_work` assignment --- libraries/chain/blockchain_worker_thread_pool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/chain/blockchain_worker_thread_pool.cpp b/libraries/chain/blockchain_worker_thread_pool.cpp index 0aa8260405..6c9e5463d3 100644 --- a/libraries/chain/blockchain_worker_thread_pool.cpp +++ b/libraries/chain/blockchain_worker_thread_pool.cpp @@ -70,7 +70,7 @@ struct blockchain_worker_thread_pool::impl void lazy_init( uint32_t new_thread_pool_size ); }; -blockchain_worker_thread_pool::impl::impl( appbase::application& app, enqueue_work_type&& enqueue_work ): theApp( app ) +blockchain_worker_thread_pool::impl::impl( appbase::application& app, enqueue_work_type&& enqueue_work ): theApp( app ), enqueue_work( enqueue_work ) { }