diff --git a/plugins/net_plugin/net_plugin.cpp b/plugins/net_plugin/net_plugin.cpp index b400c9a1fa..798d7bb543 100644 --- a/plugins/net_plugin/net_plugin.cpp +++ b/plugins/net_plugin/net_plugin.cpp @@ -1766,6 +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); + throttle_timer->expires_from_now(std::chrono::milliseconds(100)); + throttle_timer->async_wait([this, throttle_timer](const boost::system::error_code& ec) { + if (!ec) + enqueue_sync_block(); + }); return false; } }