diff --git a/crates/proof/executor/src/builder/assemble.rs b/crates/proof/executor/src/builder/assemble.rs index 4fb6dad662..f071e44cf4 100644 --- a/crates/proof/executor/src/builder/assemble.rs +++ b/crates/proof/executor/src/builder/assemble.rs @@ -166,7 +166,7 @@ pub fn compute_receipts_root( timestamp: u64, ) -> B256 { // There is a minor bug in op-geth and op-erigon where in the Regolith hardfork, - // the receipt root calculation does not inclide the deposit nonce in the + // the receipt root calculation does not include the deposit nonce in the // receipt encoding. In the Regolith hardfork, we must strip the deposit nonce // from the receipt encoding to match the receipt root calculation. if config.is_regolith_active(timestamp) && !config.is_canyon_active(timestamp) { diff --git a/crates/proof/mpt/src/list_walker.rs b/crates/proof/mpt/src/list_walker.rs index 9babdcecaa..2a2104c148 100644 --- a/crates/proof/mpt/src/list_walker.rs +++ b/crates/proof/mpt/src/list_walker.rs @@ -13,7 +13,7 @@ use core::marker::PhantomData; /// A [OrderedListWalker] allows for traversing over a Merkle Patricia Trie containing a derivable /// ordered list. /// -/// Once it has ben hydrated with [Self::hydrate], the elements in the derivable list can be +/// Once it has been hydrated with [Self::hydrate], the elements in the derivable list can be /// iterated over using the [Iterator] implementation. #[derive(Debug, Clone, Eq, PartialEq)] pub struct OrderedListWalker {