Fix more nits.

This commit is contained in:
Gav
2018-02-08 08:51:57 +01:00
parent 8c1b79c7e8
commit fde80b7b27
3 changed files with 2 additions and 26 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ use std::panic::catch_unwind;
pub trait NativeExecutionDispatch {
/// Get the wasm code that the native dispatch will be equivalent to.
fn native_equivalent() -> &'static [u8];
/// Dispatch a method and input data to be executed natively. Returns `Some` result or `None`
/// if the `method` is unknown. Panics if there's an unrecoverable error.
fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>>;