Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Fix ethcore/benches build. (#10964)
Browse files Browse the repository at this point in the history
  • Loading branch information
afck authored and ordian committed Aug 13, 2019
1 parent bd2e4f9 commit a23f5b8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ethcore/benches/builtin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,19 @@ extern crate criterion;
#[macro_use]
extern crate lazy_static;

extern crate machine;
extern crate ethcore;
extern crate ethcore_builtin;
extern crate ethereum_types;
extern crate parity_bytes as bytes;
extern crate rustc_hex;

use criterion::{Criterion, Bencher};
use bytes::BytesRef;
use ethcore::builtin::Builtin;
use ethcore::machine::Machine;
use ethcore_builtin::Builtin;
use ethereum_types::H160;
use ethcore::ethereum::new_byzantium_test_machine;
use machine::Machine;
use machine::test_helpers::new_byzantium_test_machine;
use rustc_hex::FromHex;

lazy_static! {
Expand Down

0 comments on commit a23f5b8

Please sign in to comment.