Get back to 500k transactions

This commit is contained in:
Greg Fitzgerald 2018-06-27 14:32:18 -06:00 committed by Grimes
parent ed10841e3d
commit bb89d6f54d
1 changed files with 2 additions and 3 deletions

View File

@ -244,9 +244,8 @@ fn main() {
let rnd = GenKeys::new(seed);
println!("Creating keypairs...");
let num_accounts = 500_000;
let txs = num_accounts / 2;
let keypairs = rnd.gen_n_keypairs(num_accounts);
let txs = 500_000;
let keypairs = rnd.gen_n_keypairs(txs);
let first_count = client.transaction_count();
println!("initial count {}", first_count);