diff --git a/crates/vm/src/system/memory/controller/memory.rs b/crates/vm/src/system/memory/controller/memory.rs index 1a02202c3a..acf0b342d4 100644 --- a/crates/vm/src/system/memory/controller/memory.rs +++ b/crates/vm/src/system/memory/controller/memory.rs @@ -506,7 +506,9 @@ impl OfflineMemory { pub type MemoryImage = FxHashMap; -/// A partition of data into blocks where each block has size a power of two. +/// A simple data structure to read to/write from memory. +/// +/// Stores a log of memory accesses to reconstruct aspects of memory state for trace generation. #[derive(Debug, Clone)] pub struct Memory { pub(super) data: FxHashMap,