diff --git a/linera-service/src/cli/main.rs b/linera-service/src/cli/main.rs index bbf7b005d7cc..34362db9dc9a 100644 --- a/linera-service/src/cli/main.rs +++ b/linera-service/src/cli/main.rs @@ -871,6 +871,7 @@ impl Runnable for Job { None, n, on_drop, + benchmark_options.transactions_per_block, vec![ "--storage-max-stream-queries".to_string(), "50".to_string(), diff --git a/linera-service/src/cli_wrappers/wallet.rs b/linera-service/src/cli_wrappers/wallet.rs index 43666f3c7b59..77d910272769 100644 --- a/linera-service/src/cli_wrappers/wallet.rs +++ b/linera-service/src/cli_wrappers/wallet.rs @@ -109,6 +109,7 @@ impl ClientWrapper { testing_prng_seed, id, on_drop, + 10_000, vec!["--wait-for-outgoing-messages".to_string()], ) } @@ -119,6 +120,7 @@ impl ClientWrapper { testing_prng_seed: Option, id: usize, on_drop: OnClientDrop, + max_pending_message_bundles: usize, extra_args: Vec, ) -> Self { let storage = format!( @@ -134,7 +136,7 @@ impl ClientWrapper { storage, wallet, keystore, - max_pending_message_bundles: 10_000, + max_pending_message_bundles, network, path_provider, on_drop,