Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
RomarQ committed Nov 19, 2024
1 parent d51d864 commit 77276cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion node/service/src/lazy_loading/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ where
frontier_block_import.clone(),
create_inherent_data_providers,
&task_manager.spawn_essential_handle(),
config.prometheus_registry()
config.prometheus_registry(),
)?;
let block_import = BlockImportPipeline::Dev(frontier_block_import);

Expand Down
4 changes: 2 additions & 2 deletions node/service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ where
frontier_block_import.clone(),
create_inherent_data_providers,
&task_manager.spawn_essential_handle(),
config.prometheus_registry()
config.prometheus_registry(),
)?,
BlockImportPipeline::Dev(frontier_block_import),
)
Expand All @@ -571,7 +571,7 @@ where
parachain_block_import.clone(),
create_inherent_data_providers,
&task_manager.spawn_essential_handle(),
config.prometheus_registry()
config.prometheus_registry(),
)?,
BlockImportPipeline::Parachain(parachain_block_import),
)
Expand Down

0 comments on commit 77276cb

Please sign in to comment.