Skip to content
Snippets Groups Projects
Unverified Commit 2183669d authored by Michal Kucharczyk's avatar Michal Kucharczyk Committed by GitHub
Browse files

cumulus-test-service: block import fix (#2430)

This is follow-up for:
https://github.com/paritytech/polkadot-sdk/pull/2001

Block import queue for `test-parachain` (`cumulus-test-service`) shall
use delayed best block feature.

This should fixed broken zombienet tests.
parent 50811d6b
No related merge requests found
Pipeline #416586 failed with stages
in 1 hour, 18 minutes, and 13 seconds
......@@ -211,7 +211,8 @@ pub fn new_partial(
sc_service::new_full_parts::<Block, RuntimeApi, _>(config, None, executor)?;
let client = Arc::new(client);
let block_import = ParachainBlockImport::new(client.clone(), backend.clone());
let block_import =
ParachainBlockImport::new_with_delayed_best_block(client.clone(), backend.clone());
let registry = config.prometheus_registry();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment