Skip to content

Commit 3634302

Browse files
committed
fmt
1 parent 37ac6f9 commit 3634302

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

node/src/service.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ pub fn new_partial(
119119

120120
let slot_duration = sc_consensus_aura::slot_duration(&*client)?;
121121

122-
let import_queue =
123-
sc_consensus_aura::import_queue::<AuraPair, _, _, _, _, _>(ImportQueueParams {
122+
let import_queue = sc_consensus_aura::import_queue::<AuraPair, _, _, _, _, _>(
123+
ImportQueueParams {
124124
block_import: grandpa_block_import.clone(),
125125
justification_import: Some(Box::new(grandpa_block_import.clone())),
126126
client: client.clone(),
@@ -140,7 +140,8 @@ pub fn new_partial(
140140
check_for_equivocation: Default::default(),
141141
telemetry: telemetry.as_ref().map(|x| x.handle()),
142142
compatibility_mode: Default::default(),
143-
})?;
143+
},
144+
)?;
144145

145146
Ok(sc_service::PartialComponents {
146147
client,

0 commit comments

Comments
 (0)