From 9fb4be30085d2637d3cdb9b15df3a67cf3aded1c Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Tue, 28 May 2024 13:12:16 +0000 Subject: [PATCH] fix: lookahead build --- --- a/node/cli/src/service.rs +++ b/node/cli/src/service.rs @@ -765,6 +765,7 @@ relay_client: relay_chain_interface, sync_oracle, keystore, + #[cfg(not(feature = "lookahead"))] slot_duration, proposer, collator_service, @@ -786,6 +787,8 @@ relay_chain_slot_duration, #[cfg(not(feature = "lookahead"))] collation_request_receiver: None, + #[cfg(feature = "lookahead")] + reinitialize: false, }; task_manager.spawn_essential_handle().spawn( -- gitstuff