dissolve util (#7460)

* ethereum-types refactor in progress

* ethereum-types refactor in progress

* ethereum-types refactor in progress

* ethereum-types refactor in progress

* ethereum-types refactor finished

* removed obsolete util/src/lib.rs

* removed commented out code
This commit is contained in:
Marek Kotewicz
2018-01-10 13:35:18 +01:00
committed by Svyatoslav Nikolsky
parent 4a4d64be56
commit e95b093483
395 changed files with 744 additions and 1913 deletions

View File

@@ -25,8 +25,7 @@ use ethereum;
use block::IsBlock;
use tests::helpers::*;
use types::filter::Filter;
use bigint::prelude::U256;
use util::*;
use ethereum_types::{U256, Address};
use kvdb_rocksdb::{Database, DatabaseConfig};
use devtools::*;
use miner::Miner;

View File

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

View File

@@ -15,8 +15,7 @@
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
use account_provider::AccountProvider;
use bigint::hash::H256;
use bigint::prelude::U256;
use ethereum_types::{H256, U256};
use block::{OpenBlock, Drain};
use blockchain::{BlockChain, Config as BlockChainConfig};
use bytes::Bytes;

View File

@@ -19,8 +19,7 @@
use ethkey::KeyPair;
use hash::keccak;
use block::*;
use bigint::prelude::U256;
use util::*;
use ethereum_types::{U256, Address};
use io::*;
use spec::*;
use client::*;