Skip to content

Commit c3471bf

Browse files
authored
chore: fix doc comment on get_storage (paradigmxyz#15503)
1 parent c605eef commit c3471bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/engine/tree/src/tree/cached_state.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -532,8 +532,8 @@ impl AccountStorageCache {
532532
}
533533

534534
/// Get a storage value from this account's cache.
535-
///
536-
/// - `Empty`: The slot is empty (either not in account storage cache or explicitly None)
535+
/// - `NotCached`: The slot is not in the cache
536+
/// - `Empty`: The slot is empty
537537
/// - `Value`: The slot has a specific value
538538
pub(crate) fn get_storage(&self, key: &StorageKey) -> SlotStatus {
539539
match self.slots.get(key) {

0 commit comments

Comments
 (0)