Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/proof/executor/src/builder/assemble.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion crates/proof/mpt/src/list_walker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<F: TrieProvider> {
Expand Down
Loading