diff --git a/plugins/net_plugin/net_plugin.cpp b/plugins/net_plugin/net_plugin.cpp index 798d7bb543..5cefd0022d 100644 --- a/plugins/net_plugin/net_plugin.cpp +++ b/plugins/net_plugin/net_plugin.cpp @@ -1766,12 +1766,12 @@ namespace eosio { if( current_rate_sec >= block_sync_rate_limit ) { block_sync_throttling = true; peer_dlog( this, "throttling block sync to peer ${host}:${port}", ("host", log_remote_endpoint_ip)("port", log_remote_endpoint_port)); - std::shared_ptr throttle_timer = std::make_shared(strand); + std::shared_ptr throttle_timer = std::make_shared(my_impl->thread_pool.get_executor()); throttle_timer->expires_from_now(std::chrono::milliseconds(100)); - throttle_timer->async_wait([this, throttle_timer](const boost::system::error_code& ec) { + throttle_timer->async_wait(boost::asio::bind_executor(strand, [this, throttle_timer](const boost::system::error_code& ec) { if (!ec) enqueue_sync_block(); - }); + })); return false; } }