Don't reexport bigint from util

This commit is contained in:
Fredrik
2017-09-04 16:36:49 +02:00
parent 56f46edab8
commit 308f36a532
285 changed files with 675 additions and 332 deletions

View File

@@ -16,6 +16,7 @@ serde_derive = "1.0"
ethcore = { path = "../ethcore" }
ethjson = { path = "../json" }
ethcore-util = { path = "../util" }
ethcore-bigint = { path = "../util/bigint" }
evm = { path = "../ethcore/evm" }
vm = { path = "../ethcore/vm" }
panic_hook = { path = "../panic_hook" }

View File

@@ -18,7 +18,9 @@
use ethcore::trace;
use std::collections::HashMap;
use util::{U256, H256, ToPretty};
use bigint::prelude::U256;
use bigint::hash::H256;
use util::ToPretty;
use display;
use info as vm;

View File

@@ -17,7 +17,7 @@
//! VM Output display utils.
use std::time::Duration;
use util::U256;
use bigint::prelude::U256;
pub mod json;
pub mod simple;

View File

@@ -17,7 +17,8 @@
//! VM runner.
use std::time::{Instant, Duration};
use util::{U256, H256};
use bigint::prelude::U256;
use bigint::hash::H256;
use ethcore::{trace, spec, transaction, pod_state};
use ethcore::client::{self, EvmTestClient, EvmTestError, TransactResult};
use ethjson;

View File

@@ -26,6 +26,7 @@ extern crate serde;
extern crate serde_derive;
extern crate docopt;
extern crate ethcore_util as util;
extern crate ethcore_bigint as bigint;
extern crate vm;
extern crate evm;
extern crate panic_hook;
@@ -35,7 +36,8 @@ use std::{fmt, fs};
use std::path::PathBuf;
use docopt::Docopt;
use rustc_hex::FromHex;
use util::{U256, Bytes, Address};
use bigint::prelude::U256;
use util::{Bytes, Address};
use ethcore::spec;
use vm::{ActionParams, CallType};