From 17b56a8155a8ffdf1e9f19144df4cfca0006a552 Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Mon, 4 Aug 2025 13:39:56 +0300 Subject: [PATCH] Increase the number of private keys --- crates/config/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/config/src/lib.rs b/crates/config/src/lib.rs index bc8b312..67ed625 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 = 15_000)] + #[arg(long = "private-keys-count", default_value_t = 100_000)] pub private_keys_to_add: usize, /// The differential testing leader node implementation.