From 2e1773081fddb14b1abbc4352bf880f2ee9f443d Mon Sep 17 00:00:00 2001 From: Zhe Wu Date: Tue, 17 Dec 2024 11:07:07 -0800 Subject: [PATCH] Turn off randomized tx workload (#20660) Seems causing high error rate. ## Description Describe the changes or additions included in this PR. ## Test plan How did you test the new or updated feature? --- ## Release notes Check each box that your changes affect. If none of the boxes relate to your changes, release notes aren't required. For each box you select, include information after the relevant heading that describes the impact of your changes that a user might notice and any actions they must take to implement updates. - [ ] Protocol: - [ ] Nodes (Validators and Full nodes): - [ ] Indexer: - [ ] JSON-RPC: - [ ] GraphQL: - [ ] CLI: - [ ] Rust SDK: - [ ] REST API: --- crates/sui-benchmark/tests/simtest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/sui-benchmark/tests/simtest.rs b/crates/sui-benchmark/tests/simtest.rs index de18808a3af94..415a8e920e17c 100644 --- a/crates/sui-benchmark/tests/simtest.rs +++ b/crates/sui-benchmark/tests/simtest.rs @@ -1012,7 +1012,7 @@ mod test { shared_deletion_weight: 1, shared_counter_hotness_factor: 50, randomness_weight: 1, - randomized_transaction_weight: 1, + randomized_transaction_weight: 0, num_shared_counters: Some(1), use_shared_counter_max_tip: false, shared_counter_max_tip: 0,