migrated ethcore, ethstore, secret_store, updater and hash-fetch to serde 1.0

This commit is contained in:
debris
2017-07-04 17:23:06 +02:00
parent 9c911c7a28
commit 972d30c288
18 changed files with 113 additions and 113 deletions

View File

@@ -112,7 +112,7 @@ pub fn {snake_name}<F, U>(&self, call: F, {params}) -> BoxFuture<{output_type},
U: IntoFuture<Item=Vec<u8>, Error=String>,
U::Future: Send + 'static
{{
let function = self.contract.function(r#"{abi_name}"#.to_string())
let function = self.contract.function(r#"{abi_name}"#)
.expect("function existence checked at compile-time; qed");
let call_addr = self.address;