Don't expose Benchmarking host functions by default (#4875)

* Don't expose `Benchmarking` host functions by default

* Fix tests

Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
This commit is contained in:
Bastian Köcher
2020-02-10 13:13:04 +01:00
committed by GitHub
parent ead6815ae4
commit 4254fbf56d
3 changed files with 21 additions and 21 deletions
+2 -1
View File
@@ -25,5 +25,6 @@ use sc_executor::native_executor_instance;
native_executor_instance!(
pub Executor,
node_runtime::api::dispatch,
node_runtime::native_version
node_runtime::native_version,
sp_io::benchmarking::HostFunctions,
);