Skip to content

Commit

Permalink
decreasing number of txs
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed Apr 15, 2021
1 parent 2d0afa9 commit bd11e6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/src/non_functional/load.rs
Expand Up @@ -15,7 +15,7 @@ pub fn load_test_public_100_000_votes() {
let endpoint = "127.0.0.1:8080";
let version = "2.0";

let no_of_votes = 100_000;
let no_of_votes = 10_000;
let no_of_threads = 10;
let no_of_wallets = 40_000;
let vote_timing = [0, 100, 102];
Expand Down Expand Up @@ -79,7 +79,7 @@ pub fn load_test_public_100_000_votes() {

#[test]
pub fn load_test_private_pesimistic() {
let no_of_votes = 30_000;
let no_of_votes = 8_000;
let no_of_threads = 10;
let no_of_wallets = 4_000;
let endpoint = "127.0.0.1:8080";
Expand All @@ -101,7 +101,7 @@ pub fn load_test_private_pesimistic() {

#[test]
pub fn load_test_private_optimistic() {
let no_of_votes = 100_000;
let no_of_votes = 10_000;
let no_of_threads = 10;
let no_of_wallets = 20_000;
let endpoint = "127.0.0.1:8080";
Expand Down

0 comments on commit bd11e6c

Please sign in to comment.