Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier committed Jul 11, 2023
1 parent 53cfc58 commit 23b7c0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion node/src/service/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ where
&task_manager,
relay_chain_interface.clone(),
transaction_pool,
sync_service,
sync_service.clone(),
keystore_container.keystore(),
force_authoring,
)?;
Expand All @@ -503,6 +503,7 @@ where
collator_key: collator_key.expect("Command line arguments do not allow this. qed"),
relay_chain_slot_duration,
recovery_handle: Box::new(overseer_handle),
sync_service,
};

cumulus_client_service::start_collator(params).await?;
Expand All @@ -516,6 +517,7 @@ where
relay_chain_slot_duration,
import_queue: import_queue_service,
recovery_handle: Box::new(overseer_handle),
sync_service,
};

cumulus_client_service::start_full_node(params)?;
Expand Down

0 comments on commit 23b7c0c

Please sign in to comment.