Skip to content

Commit

Permalink
don't override fork strategy at block import
Browse files Browse the repository at this point in the history
  • Loading branch information
librelois committed May 21, 2024
1 parent cb45c95 commit b9c1ce9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions node/service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,10 +524,8 @@ where
BlockImportPipeline::Dev(frontier_block_import),
)
} else {
let parachain_block_import = ParachainBlockImport::new_with_delayed_best_block(
frontier_block_import,
backend.clone(),
);
let parachain_block_import =
ParachainBlockImport::new(frontier_block_import, backend.clone());
(
nimbus_consensus::import_queue(
client.clone(),
Expand Down

0 comments on commit b9c1ce9

Please sign in to comment.