fix: typos in comments (#15938)

This commit is contained in:
leopardracer
2025-04-29 21:52:35 +03:00
committed by GitHub
parent 9ab57f70e3
commit 6a9f4c28ee
2 changed files with 2 additions and 2 deletions

View File

@@ -447,7 +447,7 @@ impl<I: Sync + Send + 'static> Action<I> for Sequence<I> {
}
}
/// Action that braodcasts the next new payload
/// Action that broadcasts the next new payload
#[derive(Debug, Default)]
pub struct BroadcastNextNewPayload {}

View File

@@ -1708,7 +1708,7 @@ where
///
/// Assumes that `finish` has been called on the `persistence_state` at least once
fn on_new_persisted_block(&mut self) -> ProviderResult<()> {
// If we have an on-disk reorg, we need to handle it firsrt before touching the in-memory
// If we have an on-disk reorg, we need to handle it first before touching the in-memory
// state.
if let Some(remove_above) = self.find_disk_reorg()? {
self.remove_blocks(remove_above);