Fix benchmark build

This commit is contained in:
Greg Fitzgerald 2018-03-19 16:39:01 -06:00
parent 47325cbe01
commit 8ee76bcea0
1 changed files with 0 additions and 9 deletions

View File

@ -70,13 +70,4 @@ mod bench {
assert!(verify_slice(&events, &start_hash));
});
}
#[bench]
fn event_bench_seq(bencher: &mut Bencher) {
let start_hash = Default::default();
let events = next_ticks(&start_hash, 10_000, 8);
bencher.iter(|| {
assert!(verify_slice_seq(&events, &start_hash));
});
}
}