Fix nightly

This commit is contained in:
Greg Fitzgerald 2018-05-09 16:51:34 -06:00
parent 0601e05978
commit 801468d70d
1 changed files with 0 additions and 3 deletions

View File

@ -107,12 +107,10 @@ mod bench {
use accounting_stage::*;
use bincode::serialize;
use hash::hash;
use historian::Historian;
use mint::Mint;
use rayon::prelude::*;
use signature::{KeyPair, KeyPairUtil};
use std::collections::HashSet;
use std::sync::mpsc::channel;
use std::time::Instant;
use transaction::Transaction;
@ -156,7 +154,6 @@ mod bench {
.map(|tr| Event::Transaction(tr))
.collect();
let (input, event_receiver) = channel();
let accounting_stage = AccountingStage::new(accountant, &mint.last_id(), None);
let now = Instant::now();