From 1ec3662f16c9d8a6773710f07518b55a1e08de35 Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Tue, 6 Feb 2024 06:18:47 -0600 Subject: [PATCH] GH-2215 Start after lib --- 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 e3d6f15852..d26ad5b3e4 100644 --- a/plugins/net_plugin/net_plugin.cpp +++ b/plugins/net_plugin/net_plugin.cpp @@ -2506,7 +2506,7 @@ namespace eosio { } if (sync_last_requested_num == 0) { // block was rejected - sync_next_expected_num = my_impl->get_chain_lib_num(); + sync_next_expected_num = my_impl->get_chain_lib_num() + 1; } else { sync_next_expected_num = blk_num + 1; }