Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
magecnion committed Sep 12, 2024
1 parent 3c273a7 commit e62bf50
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions node/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,6 @@ async fn start_node_impl(
&task_manager,
relay_chain_interface.clone(),
transaction_pool,
sync_service.clone(),
keystore_container.keystore(),
relay_chain_slot_duration,
para_id,
Expand Down Expand Up @@ -530,7 +529,6 @@ fn start_consensus(
task_manager: &TaskManager,
relay_chain_interface: Arc<dyn RelayChainInterface>,
transaction_pool: Arc<sc_transaction_pool::FullPool<Block, ParachainClient>>,
sync_oracle: Arc<SyncingService<Block>>,
keystore: KeystorePtr,
relay_chain_slot_duration: Duration,
para_id: ParaId,
Expand Down Expand Up @@ -567,7 +565,6 @@ fn start_consensus(
block_import,
para_client: client,
relay_client: relay_chain_interface,
sync_oracle,
keystore,
collator_key,
para_id,
Expand All @@ -581,7 +578,7 @@ fn start_consensus(
};

let fut =
basic_aura::run::<Block, sp_consensus_aura::sr25519::AuthorityPair, _, _, _, _, _, _, _>(
basic_aura::run::<Block, sp_consensus_aura::sr25519::AuthorityPair, _, _, _, _, _, _>(
params,
);
task_manager.spawn_essential_handle().spawn("aura", None, fut);
Expand Down

0 comments on commit e62bf50

Please sign in to comment.