From b2c0a9d53138728a1320ae5ee96de407584b60ae Mon Sep 17 00:00:00 2001 From: keorn Date: Wed, 14 Sep 2016 11:26:39 +0200 Subject: [PATCH] introduce ethkey dependency to generate txs --- Cargo.lock | 1 + sync/Cargo.toml | 1 + sync/src/lib.rs | 3 +++ 3 files changed, 5 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 13fbcf9ef..fe4926175 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -611,6 +611,7 @@ dependencies = [ "ethcore-ipc-nano 1.4.0", "ethcore-network 1.4.0", "ethcore-util 1.4.0", + "ethkey 0.2.0", "heapsize 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/sync/Cargo.toml b/sync/Cargo.toml index a73077c9c..a6bdf8c8f 100644 --- a/sync/Cargo.toml +++ b/sync/Cargo.toml @@ -13,6 +13,7 @@ ethcore-ipc-codegen = { path = "../ipc/codegen" } [dependencies] ethcore-util = { path = "../util" } +ethkey = { path = "../ethkey" } ethcore-network = { path = "../util/network" } ethcore-io = { path = "../util/io" } ethcore = { path = "../ethcore" } diff --git a/sync/src/lib.rs b/sync/src/lib.rs index d2c6e2583..81f2e7b9d 100644 --- a/sync/src/lib.rs +++ b/sync/src/lib.rs @@ -37,6 +37,9 @@ extern crate semver; extern crate parking_lot; extern crate rlp; +#[cfg(test)] +extern crate ethkey; + #[macro_use] extern crate log; #[macro_use]