Skip to content

Commit 98c1669

Browse files
committed
fix feature
1 parent 17c9611 commit 98c1669

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/collator/src/parachain/service.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ where
566566
if is_authority {
567567
start_consensus(
568568
client.clone(),
569-
backend.clone(),
569+
backend,
570570
parachain_block_import,
571571
prometheus_registry.as_ref(),
572572
telemetry.map(|t| t.handle()),
@@ -659,6 +659,7 @@ where
659659
) -> Result<sc_consensus::DefaultImportQueue<Block>, sc_service::Error>,
660660
SC: FnOnce(
661661
Arc<TFullClient<Block, RuntimeApi, NativeElseWasmExecutor<Executor>>>,
662+
Arc<TFullBackend<Block>>,
662663
ParachainBlockImport<
663664
Block,
664665
FrontierBlockImport<
@@ -902,6 +903,7 @@ where
902903
if is_authority {
903904
start_consensus(
904905
client.clone(),
906+
backend,
905907
parachain_block_import,
906908
prometheus_registry.as_ref(),
907909
telemetry.map(|t| t.handle()),

0 commit comments

Comments
 (0)