From 902b44c94fc5daa986b8804106a2fc9c93434f28 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Sat, 26 Mar 2016 13:44:42 +0100 Subject: [PATCH] Remove info!s. --- rpc/src/v1/impls/eth.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/rpc/src/v1/impls/eth.rs b/rpc/src/v1/impls/eth.rs index e7710b6df..a68fc91fd 100644 --- a/rpc/src/v1/impls/eth.rs +++ b/rpc/src/v1/impls/eth.rs @@ -516,9 +516,7 @@ impl Eth for EthClient from_params_discard_second(params).and_then(|(request, )| { let client = take_weak!(self.client); let signed = Self::sign_call(&client, request); - info!("call: signed={:?}", signed); let output = client.call(&signed).map(|e| Bytes(e.output)).unwrap_or(Bytes::new(vec![])); - info!("call: output={:?}", output); to_value(&output) }) }