mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
Move registration of ReadRuntimeVersionExt to ExecutionExtension (#13820)
Instead of registering `ReadRuntimeVersionExt` in `sp-state-machine` it is moved to `ExecutionExtension` which provides the default extensions.
This commit is contained in:
@@ -411,11 +411,16 @@ impl BenchDb {
|
||||
|
||||
let client = sc_service::new_client(
|
||||
backend.clone(),
|
||||
executor,
|
||||
executor.clone(),
|
||||
genesis_block_builder,
|
||||
None,
|
||||
None,
|
||||
ExecutionExtensions::new(profile.into_execution_strategies(), None, None),
|
||||
ExecutionExtensions::new(
|
||||
profile.into_execution_strategies(),
|
||||
None,
|
||||
None,
|
||||
Arc::new(executor),
|
||||
),
|
||||
Box::new(task_executor.clone()),
|
||||
None,
|
||||
None,
|
||||
|
||||
Reference in New Issue
Block a user