From 11bba5add502dfe72ab6f1f30bfe4d46040df9dc Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Fri, 1 Aug 2025 09:45:23 +0300 Subject: [PATCH] Update the default config of the tool --- crates/config/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/config/src/lib.rs b/crates/config/src/lib.rs index b027d41..bc8b312 100644 --- a/crates/config/src/lib.rs +++ b/crates/config/src/lib.rs @@ -77,7 +77,7 @@ pub struct Arguments { /// This argument controls which private keys the nodes should have access to and be added to /// its wallet signers. With a value of N, private keys (0, N] will be added to the signer set /// of the node. - #[arg(long = "private-keys-count", default_value_t = 30)] + #[arg(long = "private-keys-count", default_value_t = 15_000)] pub private_keys_to_add: usize, /// The differential testing leader node implementation. @@ -93,7 +93,7 @@ pub struct Arguments { pub compile_only: Option, /// Determines the amount of nodes that will be spawned for each chain. - #[arg(long, default_value = "12")] + #[arg(long, default_value = "1")] pub number_of_nodes: usize, /// Determines the amount of threads that will will be used.