Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospb19-cw committed Nov 28, 2024
1 parent a3c72be commit 6748a55
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/eth/storage/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,13 @@ impl StorageCache {
}

pub fn get_slot(&self, address: Address, index: SlotIndex) -> Option<Slot> {
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<Account> {
self.account_cache.get(&address)
None
// self.account_cache.get(&address)
}
}

Expand Down

0 comments on commit 6748a55

Please sign in to comment.