From 843e3d3216d87aa888b009f3d9ded1b7198cb9bf Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Thu, 9 Jan 2025 10:06:26 -0600 Subject: [PATCH] GH-1091 Test threshold of 0 --- plugins/net_plugin/net_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/net_plugin/net_plugin.cpp b/plugins/net_plugin/net_plugin.cpp index fca83cf231..92c4c33f62 100644 --- a/plugins/net_plugin/net_plugin.cpp +++ b/plugins/net_plugin/net_plugin.cpp @@ -921,7 +921,7 @@ namespace eosio { std::chrono::nanoseconds connection_start_time{0}; // block nack support - static constexpr uint16_t consecutive_block_nacks_threshold{3}; // stop sending blocks when reached + static constexpr uint16_t consecutive_block_nacks_threshold{0}; // stop sending blocks when reached uint16_t consecutive_blocks_nacks{0}; block_id_type last_block_nack; block_id_type last_block_notice;