diff --git a/crates/stages/src/stages/headers.rs b/crates/stages/src/stages/headers.rs index 1aa9a375d8..a9e1d975ac 100644 --- a/crates/stages/src/stages/headers.rs +++ b/crates/stages/src/stages/headers.rs @@ -59,7 +59,7 @@ where H: HeadersClient, S: StatusUpdater, { - async fn update_head( + fn update_head( &self, tx: &Transaction<'_, DB>, height: BlockNumber, @@ -202,7 +202,7 @@ where input: ExecInput, ) -> Result { let current_progress = input.stage_progress.unwrap_or_default(); - self.update_head::(tx, current_progress).await?; + self.update_head::(tx, current_progress)?; // Lookup the head and tip of the sync range let gap = self.get_sync_gap(tx, current_progress).await?;