diff --git a/src/eth/storage/cache.rs b/src/eth/storage/cache.rs index 3d51c27dc..b331d1d96 100644 --- a/src/eth/storage/cache.rs +++ b/src/eth/storage/cache.rs @@ -74,11 +74,13 @@ impl StorageCache { } pub fn get_slot(&self, address: Address, index: SlotIndex) -> Option { - self.slot_cache.get(&(address, index)).map(|value| Slot { value, index }) + None + // self.slot_cache.get(&(address, index)).map(|value| Slot { value, index }) } pub fn get_account(&self, address: Address) -> Option { - self.account_cache.get(&address) + None + // self.account_cache.get(&address) } }