From d85bb464a6c9daa536ce52424109013f8a777f2f Mon Sep 17 00:00:00 2001 From: JereSalo Date: Fri, 3 Jan 2025 13:08:18 -0300 Subject: [PATCH] update comment --- crates/vm/vm.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/vm/vm.rs b/crates/vm/vm.rs index f952f28ff..5028b1f62 100644 --- a/crates/vm/vm.rs +++ b/crates/vm/vm.rs @@ -202,7 +202,7 @@ cfg_if::cfg_if! { account_updates } - /// Executes all transactions in a block and returns their receipts. + /// Executes all transactions in a block and returns their receipts and account updates. pub fn execute_block( block: &Block, store: &Store, @@ -321,7 +321,7 @@ cfg_if::cfg_if! { vm.transact() } } else if #[cfg(not(feature = "levm"))] { - /// Executes all transactions in a block and returns their receipts. + /// Executes all transactions in a block and returns their receipts and account updates. pub fn execute_block(block: &Block, store: &Store) -> Result<(Vec, Vec), EvmError> { let mut state = evm_state(store.clone(), block.header.parent_hash);