silence errors temporarily

This commit is contained in:
Robert Habermeier 2017-02-08 19:09:52 +01:00
parent 3669d17390
commit dd9e3f21ad
2 changed files with 6 additions and 1 deletions

View File

@ -16,6 +16,9 @@
//! Eth RPC interface for the light client.
// TODO: remove when complete.
#![allow(unused_imports, unused_variables)]
use std::sync::Arc;
use jsonrpc_core::Error;

View File

@ -16,4 +16,6 @@
//! RPC implementations for the light client.
mod eth;
pub mod eth;
pub use self::eth::EthClient;