Fix nightly

This commit is contained in:
Greg Fitzgerald
2018-05-09 16:51:34 -06:00
parent 0601e05978
commit 801468d70d

View File

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