Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates Moonkit to fix experimental import #3085

Merged
merged 2 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 @@ -337,7 +337,7 @@ where
create_inherent_data_providers,
&task_manager.spawn_essential_handle(),
config.prometheus_registry(),
None,
false,
)?;
let block_import = BlockImportPipeline::Dev(frontier_block_import);

Expand Down
8 changes: 4 additions & 4 deletions node/service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -569,9 +569,9 @@ where
&task_manager.spawn_essential_handle(),
config.prometheus_registry(),
if experimental_block_import_strategy {
None
true
crystalin marked this conversation as resolved.
Show resolved Hide resolved
} else {
Some(!dev_service)
!dev_service
},
)?,
BlockImportPipeline::Dev(frontier_block_import),
Expand All @@ -593,9 +593,9 @@ where
&task_manager.spawn_essential_handle(),
config.prometheus_registry(),
if experimental_block_import_strategy {
None
true
} else {
Some(!dev_service)
!dev_service
crystalin marked this conversation as resolved.
Show resolved Hide resolved
},
)?,
BlockImportPipeline::Parachain(parachain_block_import),
Expand Down
Loading