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 54e9759d0f
commit 1f05776b61
2 changed files with 3 additions and 3 deletions

View File

@ -7,4 +7,4 @@ license = "GPL-3.0"
[dependencies]
elastic-array = "0.9"
ethcore-bigint = { version = "0.2.1", path = "../bigint" }
ethereum-types = "0.1"

View File

@ -16,11 +16,11 @@
//! Database of byte-slices keyed to their Keccak hash.
extern crate elastic_array;
extern crate ethcore_bigint as bigint;
extern crate ethereum_types;
use bigint::hash::*;
use std::collections::HashMap;
use elastic_array::ElasticArray128;
use ethereum_types::H256;
/// `HashDB` value type.
pub type DBValue = ElasticArray128<u8>;