Skip to content
Snippets Groups Projects
Commit 610dd136 authored by Ashley's avatar Ashley Committed by GitHub
Browse files

Companion PR for `Add a `DefaultQueue` type alias to remove the need to use...

Companion PR for `Add a `DefaultQueue` type alias to remove the need to use `sp_api::TransactionFor`` (#1499)

* BabeImportQueue -> DefaultImportQueue

* Use DefaultImportQueue from the top level of consensus_common

* 'Update substrate'

Co-authored-by: parity-processbot <>
parent 4b2cb04e
Branches
No related merge requests found
This diff is collapsed.
......@@ -160,7 +160,7 @@ type LightClient<RuntimeApi, Executor> =
fn new_partial<RuntimeApi, Executor, Extrinsic>(config: &mut Configuration) -> Result<
service::PartialComponents<
FullClient<RuntimeApi, Executor>, FullBackend, FullSelectChain,
babe::BabeImportQueue<Block, FullClient<RuntimeApi, Executor>>,
consensus_common::DefaultImportQueue<Block, FullClient<RuntimeApi, Executor>>,
sc_transaction_pool::FullPool<Block, FullClient<RuntimeApi, Executor>>,
(
impl Fn(polkadot_rpc::DenyUnsafe) -> polkadot_rpc::RpcExtension,
......
......@@ -151,7 +151,7 @@ type LightClient<RuntimeApi, Executor> =
pub fn new_partial<RuntimeApi, Executor, Extrinsic>(config: &mut Configuration, test: bool) -> Result<
service::PartialComponents<
FullClient<RuntimeApi, Executor>, FullBackend, FullSelectChain,
babe::BabeImportQueue<Block, FullClient<RuntimeApi, Executor>>,
consensus_common::DefaultImportQueue<Block, FullClient<RuntimeApi, Executor>>,
sc_transaction_pool::FullPool<Block, FullClient<RuntimeApi, Executor>>,
(
impl Fn(polkadot_rpc::DenyUnsafe) -> polkadot_rpc::RpcExtension,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment