diff --git a/crates/evm/src/block/system_calls/eip2935.rs b/crates/evm/src/block/system_calls/eip2935.rs index 13bd0d7e..dcf8c381 100644 --- a/crates/evm/src/block/system_calls/eip2935.rs +++ b/crates/evm/src/block/system_calls/eip2935.rs @@ -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. diff --git a/crates/evm/src/block/system_calls/eip4788.rs b/crates/evm/src/block/system_calls/eip4788.rs index f4e3a162..231cc2e1 100644 --- a/crates/evm/src/block/system_calls/eip4788.rs +++ b/crates/evm/src/block/system_calls/eip4788.rs @@ -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. diff --git a/crates/evm/src/block/system_calls/eip7002.rs b/crates/evm/src/block/system_calls/eip7002.rs index 84346bf2..b2707bc0 100644 --- a/crates/evm/src/block/system_calls/eip7002.rs +++ b/crates/evm/src/block/system_calls/eip7002.rs @@ -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( evm: &mut impl Evm, diff --git a/crates/evm/src/block/system_calls/eip7251.rs b/crates/evm/src/block/system_calls/eip7251.rs index 9b5813c5..19fe730f 100644 --- a/crates/evm/src/block/system_calls/eip7251.rs +++ b/crates/evm/src/block/system_calls/eip7251.rs @@ -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( evm: &mut impl Evm, diff --git a/crates/evm/src/block/system_calls/mod.rs b/crates/evm/src/block/system_calls/mod.rs index 0f63628d..8fb46811 100644 --- a/crates/evm/src/block/system_calls/mod.rs +++ b/crates/evm/src/block/system_calls/mod.rs @@ -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,