Merge pull request #4 from blockworks-foundation/feature

200 threads and run in release
This commit is contained in:
galactus 2023-06-15 16:07:20 +02:00 committed by GitHub
commit 40fe0f632e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@ EOF
fi
for i in {5..100..5}
for i in {5..200..5}
do
cargo run -- -a -t $i -o "$1/$i.json" "${@:2}"
cargo run --release -- -a -t $i -o "$1/$i.json" "${@:2}"
sleep 10s
done
done