Decrease the testnet default for min_nodes_to_process

This commit is contained in:
Ken Sedgwick 2025-08-22 09:44:12 -07:00
parent 14299a23e9
commit 6aad979092
3 changed files with 3 additions and 3 deletions

View file

@ -142,7 +142,7 @@ private:
if (!min_nodes_to_process_set) {
switch (init.network) {
case Boss::Msg::Network_Bitcoin: min_nodes_to_process = 800; break;
case Boss::Msg::Network_Testnet: min_nodes_to_process = 200; break;
case Boss::Msg::Network_Testnet: min_nodes_to_process = 100; break;
default: min_nodes_to_process = 10; break; // others are likely small
}
}