fixed building rpc module

This commit is contained in:
debris 2016-02-01 12:08:43 +01:00
parent cbc5bfcb46
commit 3000f057e4
3 changed files with 4 additions and 2 deletions

View File

@ -14,6 +14,7 @@ serde_json = "0.6.0"
jsonrpc-core = "1.1"
jsonrpc-http-server = "1.1"
ethcore-util = { path = "../util" }
ethcore = { path = ".." }
ethcore = { path = "../ethcore" }
ethsync = { path = "../sync" }
clippy = "0.0.37"

View File

@ -10,6 +10,7 @@ extern crate jsonrpc_core;
extern crate jsonrpc_http_server;
extern crate ethcore_util as util;
extern crate ethcore;
extern crate ethsync;
use self::jsonrpc_core::{IoHandler, IoDelegate};

View File

@ -1,7 +1,7 @@
//! Net rpc implementation.
use std::sync::Arc;
use jsonrpc_core::*;
use ethcore::sync::EthSync;
use ethsync::EthSync;
use v1::traits::Net;
/// Net rpc implementation.