From 31dbc09e180d690e3ba373ee30136f62f7a30692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Mon, 18 Nov 2024 19:54:21 +0100 Subject: [PATCH] Unlimited bootstrap client rate --- nano/node/bootstrap/bootstrap_config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nano/node/bootstrap/bootstrap_config.hpp b/nano/node/bootstrap/bootstrap_config.hpp index 2896803681..4733de7649 100644 --- a/nano/node/bootstrap/bootstrap_config.hpp +++ b/nano/node/bootstrap/bootstrap_config.hpp @@ -48,7 +48,7 @@ class bootstrap_config final // Maximum number of un-responded requests per channel, should be lower or equal to bootstrap server max queue size std::size_t channel_limit{ 16 }; - std::size_t rate_limit{ 500 }; + std::size_t rate_limit{ 0 }; std::size_t database_rate_limit{ 250 }; std::size_t frontier_rate_limit{ 8 }; std::size_t database_warmup_ratio{ 10 };