Type Definition common_types::engines::machine::Call[][src]

type Call<'a> = dyn 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.