chore: fix typos (#7049)

This commit is contained in:
DaniPopes
2024-03-08 15:23:37 +01:00
committed by GitHub
parent 7fa35042dd
commit 3c028e5ef4
56 changed files with 93 additions and 93 deletions

View File

@ -8,7 +8,7 @@ use tokio::sync::oneshot;
/// Possible error variants during payload building.
#[derive(Debug, thiserror::Error)]
pub enum PayloadBuilderError {
/// Thrown whe the parent block is missing.
/// Thrown when the parent block is missing.
#[error("missing parent block {0}")]
MissingParentBlock(B256),
/// An oneshot channels has been closed.

View File

@ -382,7 +382,7 @@ mod builder {
}
};
// to realease the db reference drop evm.
// to release the db reference drop evm.
drop(evm);
// commit changes
db.commit(state);