Skip to content
Open
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/evm/src/block/system_calls/eip2935.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use revm::{context::Block, context_interface::result::ResultAndState};
/// If Prague is not activated, or the block is the genesis block, then this is a no-op, and no
/// state changes are made.
///
/// Note: this does not commit the state changes to the database, it only transact the call.
/// Note: this does not commit the state changes to the database, it only transacts the call.
///
/// Returns `None` if Prague is not active or the block is the genesis block, otherwise returns the
/// result of the call.
Expand Down
2 changes: 1 addition & 1 deletion crates/evm/src/block/system_calls/eip4788.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use revm::{context::Block, context_interface::result::ResultAndState};
/// Applies the pre-block call to the [EIP-4788] beacon block root contract, using the given block,
/// chain spec, EVM.
///
/// Note: this does not commit the state changes to the database, it only transact the call.
/// Note: this does not commit the state changes to the database, it only transacts the call.
///
/// Returns `None` if Cancun is not active or the block is the genesis block, otherwise returns the
/// result of the call.
Expand Down
2 changes: 1 addition & 1 deletion crates/evm/src/block/system_calls/eip7002.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use revm::context_interface::result::{ExecutionResult, ResultAndState};
///
/// If Prague is not active at the given timestamp, then this is a no-op.
///
/// Note: this does not commit the state changes to the database, it only transact the call.
/// Note: this does not commit the state changes to the database, it only transacts the call.
#[inline]
pub(crate) fn transact_withdrawal_requests_contract_call<Halt>(
evm: &mut impl Evm<HaltReason = Halt>,
Expand Down
2 changes: 1 addition & 1 deletion crates/evm/src/block/system_calls/eip7251.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use revm::context_interface::result::{ExecutionResult, ResultAndState};
/// If Prague is not active at the given timestamp, then this is a no-op, and an empty vector is
/// returned. Otherwise, the consolidation requests are returned.
///
/// Note: this does not commit the state changes to the database, it only transact the call.
/// Note: this does not commit the state changes to the database, it only transacts the call.
#[inline]
pub(crate) fn transact_consolidation_requests_contract_call<Halt>(
evm: &mut impl Evm<HaltReason = Halt>,
Expand Down
2 changes: 1 addition & 1 deletion crates/evm/src/block/system_calls/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ where
Ok(())
}

/// Applies the post-block call to the EIP-7002 withdrawal request contract.
/// Applies the post-block call to the EIP-7002 withdrawal requests contract.
pub fn apply_withdrawal_requests_contract_call(
&mut self,
evm: &mut impl Evm<DB: DatabaseCommit>,
Expand Down