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

@@ -20,8 +20,7 @@ use engines::EthEngine;
use error::Error;
use heapsize::HeapSizeOf;
use bigint::prelude::U256;
use bigint::hash::H256;
use ethereum_types::{H256, U256};
pub use self::blocks::Blocks;
pub use self::headers::Headers;
@@ -75,8 +74,7 @@ pub mod blocks {
use verification::{PreverifiedBlock, verify_block_basic, verify_block_unordered};
use heapsize::HeapSizeOf;
use bigint::prelude::U256;
use bigint::hash::H256;
use ethereum_types::{H256, U256};
use bytes::Bytes;
/// A mode for verifying blocks.
@@ -172,8 +170,7 @@ pub mod headers {
use header::Header;
use verification::verify_header_params;
use bigint::prelude::U256;
use bigint::hash::H256;
use ethereum_types::{H256, U256};
impl BlockLike for Header {
fn hash(&self) -> H256 { self.hash() }

View File

@@ -23,8 +23,7 @@ use std::sync::{Condvar as SCondvar, Mutex as SMutex, Arc};
use std::cmp;
use std::collections::{VecDeque, HashSet, HashMap};
use heapsize::HeapSizeOf;
use bigint::prelude::U256;
use bigint::hash::H256;
use ethereum_types::{H256, U256};
use parking_lot::{Condvar, Mutex, RwLock};
use io::*;
use error::*;