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

@@ -28,9 +28,8 @@ use std::collections::hash_map::Entry;
use ethcore::error::{TransactionError, TransactionImportResult};
use ethcore::transaction::{Condition, PendingTransaction, SignedTransaction};
use bigint::prelude::U256;
use bigint::hash::{H256, H256FastMap};
use util::Address;
use ethereum_types::{H256, U256, Address};
use plain_hasher::H256FastMap;
// Knowledge of an account's current nonce.
#[derive(Debug, Clone, PartialEq, Eq)]
@@ -331,7 +330,7 @@ impl TransactionQueue {
#[cfg(test)]
mod tests {
use super::TransactionQueue;
use util::Address;
use ethereum_types::Address;
use ethcore::transaction::{Transaction, PendingTransaction, Condition};
#[test]