Refactor sc_executor::RuntimeInfo trait into 2 parts (#9498)

* Split native executor stuff from wasm executor stuff

* Remove `native_runtime_version` in places

* Fix warning

* Fix test warning

* Remove redundant NativeRuntimeInfo trait

* Add a warning for use_native

* Run cargo fmt

* Revert "Add a warning for use_native"

This reverts commit 9494f765a06037e991dd60524f2ed1b14649bfd6.
This commit is contained in:
Ashley
2021-08-10 15:23:09 +02:00
committed by GitHub
parent b17fa22afc
commit 394c2817d5
14 changed files with 101 additions and 59 deletions
+1 -5
View File
@@ -44,7 +44,7 @@ use sp_blockchain::{Error as ClientError, Result as ClientResult};
use sc_client_api::{
backend::RemoteBackend, call_executor::CallExecutor, light::RemoteCallRequest,
};
use sc_executor::{NativeVersion, RuntimeVersion};
use sc_executor::RuntimeVersion;
/// Call executor that is able to execute calls only on genesis state.
///
@@ -162,10 +162,6 @@ where
Err(ClientError::NotAvailableOnLightClient)
}
}
fn native_runtime_version(&self) -> Option<&NativeVersion> {
None
}
}
/// Check remote contextual execution proof using given backend.