Reduce verify-batch-size log (#6623)

This commit is contained in:
sakridge
2019-10-30 13:41:11 -07:00
committed by GitHub
parent 627664b785
commit 38491c8c4b
2 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,3 @@
use rand::SeedableRng;
use rand_chacha::ChaChaRng;
use rayon::iter::ParallelIterator;
use rayon::prelude::*;
use serial_test_derive::serial;
@ -120,7 +118,7 @@ fn run_simulation(stakes: &[u64], fanout: usize) {
&cluster_info.id(),
&peers,
&stakes_and_index,
ChaChaRng::from_seed(seed),
seed,
);
let peers = shuffled_stakes_and_indexes
.into_iter()