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

@@ -25,6 +25,7 @@ use ethereum;
use block::IsBlock;
use tests::helpers::*;
use types::filter::Filter;
use bigint::prelude::U256;
use util::*;
use devtools::*;
use miner::Miner;

View File

@@ -12,6 +12,7 @@ use transaction::SYSTEM_ADDRESS;
use rustc_hex::FromHex;
use bigint::hash::H256;
use util::*;
evm_test!{test_blockhash_eip210: test_blockhash_eip210_jit, test_blockhash_eip210_int}

View File

@@ -20,6 +20,8 @@ use hash::keccak;
use ethkey::KeyPair;
use io::*;
use client::{BlockChainClient, Client, ClientConfig};
use bigint::prelude::U256;
use bigint::hash::H256;
use util::*;
use spec::*;
use account_provider::AccountProvider;

View File

@@ -19,6 +19,7 @@
use ethkey::KeyPair;
use hash::keccak;
use block::*;
use bigint::prelude::U256;
use util::*;
use io::*;
use spec::*;