From 380ed40aa7fb58337801be57c0ebeb3d66adfd09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Sat, 18 Jan 2025 20:56:42 +0100 Subject: [PATCH] Fix `bootstrap_fork_open` test --- nano/core_test/node.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nano/core_test/node.cpp b/nano/core_test/node.cpp index 2102685b8..213103785 100644 --- a/nano/core_test/node.cpp +++ b/nano/core_test/node.cpp @@ -1387,6 +1387,8 @@ TEST (node, bootstrap_fork_open) nano::test::system system; nano::node_config node_config (system.get_available_port ()); node_config.bootstrap.account_sets.cooldown = 100ms; // Reduce cooldown to speed up fork resolution + node_config.bootstrap.frontier_scan.head_parallelistm = 3; // Make sure we can process the full account number range + node_config.bootstrap.frontier_rate_limit = 0; // Disable rate limiting to speed up the scan // Disable automatic election activation node_config.backlog_scan.enable = false; node_config.priority_scheduler.enable = false;