diff --git a/crates/blockchain/vm.rs b/crates/blockchain/vm.rs
index 41787942199..a90fdd2ae49 100644
--- a/crates/blockchain/vm.rs
+++ b/crates/blockchain/vm.rs
@@ -2,7 +2,7 @@ use bytes::Bytes;
use ethrex_common::{
Address, H256, U256,
constants::EMPTY_KECCACK_HASH,
- types::{AccountInfo, BlockHash, BlockNumber, ChainConfig},
+ types::{AccountState, BlockHash, BlockNumber, ChainConfig},
};
use ethrex_storage::Store;
use ethrex_vm::{EvmError, VmDatabase};
@@ -43,9 +43,9 @@ impl StoreVmDatabase {
impl VmDatabase for StoreVmDatabase {
#[instrument(level = "trace", name = "Account read", skip_all)]
- fn get_account_info(&self, address: Address) -> Result