Skip to content

Commit

Permalink
The thread_pool fix - lack of enqueue_work assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariusz-Trela authored and vogel76 committed Oct 28, 2023
1 parent 7def099 commit 18a9fd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/chain/blockchain_worker_thread_pool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
{

}
Expand Down

0 comments on commit 18a9fd1

Please sign in to comment.