Type Definition ethcore::machine::Call
[−]
[src]
type Call<'a> = Fn(Address, Vec<u8>) -> Result<(Vec<u8>, Vec<Vec<u8>>), String> + 'a;
Type alias for a function we can make calls through synchronously. Returns the call result and state proof for each call.