Merge pull request #194 from garious/add-accounting-stage

Fix nightly
This commit is contained in:
Greg Fitzgerald 2018-05-09 16:53:45 -06:00 committed by GitHub
commit 1cfaa9afb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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();