We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1159cbc commit f53035eCopy full SHA for f53035e
src/tasks/env.rs
@@ -278,7 +278,9 @@ impl EnvTask {
278
279
let (host_block_res, quincey_res) = tokio::join!(
280
self.host_provider.get_block_by_number(host_block_number.into()),
281
- self.quincey.preflight_check(&self.config.constants, host_block_number)
+ // We want to check that we're able to sign for the block we're gonna start building.
282
+ // If not, we just want to skip all the work.
283
+ self.quincey.preflight_check(&self.config.constants, host_block_number + 1)
284
);
285
286
res_unwrap_or_continue!(
0 commit comments