Remove info!s.

This commit is contained in:
Gav Wood 2016-03-26 13:44:42 +01:00
parent 54bf237e4f
commit 902b44c94f
1 changed files with 0 additions and 2 deletions

View File

@ -516,9 +516,7 @@ impl<C, S, A, M, EM> Eth for EthClient<C, S, A, M, EM>
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)
})
}