diff --git a/chain/Cargo.toml b/chain/Cargo.toml index c2b3da60e..b1a305961 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -27,6 +27,5 @@ grin_store = { path = "../store", version = "0.4.2" } grin_util = { path = "../util", version = "0.4.2" } [dev-dependencies] -grin_wallet = { path = "../wallet", version = "0.4.2" } env_logger = "0.5" rand = "0.5" diff --git a/chain/tests/data_file_integrity.rs b/chain/tests/data_file_integrity.rs index 440bf7db9..86b9a3041 100644 --- a/chain/tests/data_file_integrity.rs +++ b/chain/tests/data_file_integrity.rs @@ -19,7 +19,6 @@ extern crate grin_core as core; extern crate grin_keychain as keychain; extern crate grin_store as store; extern crate grin_util as util; -extern crate grin_wallet as wallet; extern crate rand; use chrono::Duration; diff --git a/chain/tests/mine_simple_chain.rs b/chain/tests/mine_simple_chain.rs index 2adc93db6..d637b065f 100644 --- a/chain/tests/mine_simple_chain.rs +++ b/chain/tests/mine_simple_chain.rs @@ -18,7 +18,6 @@ extern crate grin_core as core; extern crate grin_keychain as keychain; extern crate grin_store as store; extern crate grin_util as util; -extern crate grin_wallet as wallet; extern crate rand; use chrono::Duration; diff --git a/chain/tests/store_indices.rs b/chain/tests/store_indices.rs index b4afd04de..5855a695c 100644 --- a/chain/tests/store_indices.rs +++ b/chain/tests/store_indices.rs @@ -17,7 +17,6 @@ extern crate grin_chain as chain; extern crate grin_core as core; extern crate grin_keychain as keychain; extern crate grin_store as store; -extern crate grin_wallet as wallet; extern crate rand; use std::fs; diff --git a/chain/tests/test_coinbase_maturity.rs b/chain/tests/test_coinbase_maturity.rs index 7be8440b3..f611fef7a 100644 --- a/chain/tests/test_coinbase_maturity.rs +++ b/chain/tests/test_coinbase_maturity.rs @@ -19,7 +19,6 @@ extern crate grin_core as core; extern crate grin_keychain as keychain; extern crate grin_store as store; extern crate grin_util as util; -extern crate grin_wallet as wallet; extern crate rand; use chrono::Duration; diff --git a/pool/Cargo.toml b/pool/Cargo.toml index c0b2ca146..c7c70b57b 100644 --- a/pool/Cargo.toml +++ b/pool/Cargo.toml @@ -22,5 +22,4 @@ grin_store = { path = "../store", version = "0.4.2" } grin_util = { path = "../util", version = "0.4.2" } [dev-dependencies] -grin_wallet = { path = "../wallet", version = "0.4.2" } grin_chain = { path = "../chain", version = "0.4.2" } diff --git a/pool/tests/block_building.rs b/pool/tests/block_building.rs index 4ef22066d..deba40987 100644 --- a/pool/tests/block_building.rs +++ b/pool/tests/block_building.rs @@ -18,7 +18,6 @@ extern crate grin_core as core; extern crate grin_keychain as keychain; extern crate grin_pool as pool; extern crate grin_util as util; -extern crate grin_wallet as wallet; extern crate chrono; extern crate rand; diff --git a/pool/tests/block_reconciliation.rs b/pool/tests/block_reconciliation.rs index 944312896..65a7f7bf6 100644 --- a/pool/tests/block_reconciliation.rs +++ b/pool/tests/block_reconciliation.rs @@ -18,7 +18,6 @@ extern crate grin_core as core; extern crate grin_keychain as keychain; extern crate grin_pool as pool; extern crate grin_util as util; -extern crate grin_wallet as wallet; extern crate chrono; extern crate rand; diff --git a/pool/tests/coinbase_maturity.rs b/pool/tests/coinbase_maturity.rs index 3085674c8..1f80b6bc3 100644 --- a/pool/tests/coinbase_maturity.rs +++ b/pool/tests/coinbase_maturity.rs @@ -18,7 +18,6 @@ extern crate grin_core as core; extern crate grin_keychain as keychain; extern crate grin_pool as pool; extern crate grin_util as util; -extern crate grin_wallet as wallet; extern crate chrono; extern crate rand; diff --git a/pool/tests/common/mod.rs b/pool/tests/common/mod.rs index 3731c9632..9fcdbfcd8 100644 --- a/pool/tests/common/mod.rs +++ b/pool/tests/common/mod.rs @@ -21,7 +21,6 @@ extern crate grin_keychain as keychain; extern crate grin_pool as pool; extern crate grin_store as store; extern crate grin_util as util; -extern crate grin_wallet as wallet; extern crate chrono; extern crate rand; diff --git a/pool/tests/transaction_pool.rs b/pool/tests/transaction_pool.rs index 8c166e2fe..5e3b7e21a 100644 --- a/pool/tests/transaction_pool.rs +++ b/pool/tests/transaction_pool.rs @@ -18,7 +18,6 @@ extern crate grin_core as core; extern crate grin_keychain as keychain; extern crate grin_pool as pool; extern crate grin_util as util; -extern crate grin_wallet as wallet; extern crate chrono; extern crate rand;