File: src/ui/tui.rs — DebuggerUI::handle_command ("storage" arm)
self.storage_inspector.display() shows whatever the StorageInspector instance has accumulated internally, not a fresh snapshot from the executor. After a function call the displayed state may lag by one step.
Expected: The storage command should call engine.executor().get_storage_snapshot() and display the current ledger state, consistent with how the REPL does it.
File:
src/ui/tui.rs—DebuggerUI::handle_command("storage"arm)self.storage_inspector.display()shows whatever theStorageInspectorinstance has accumulated internally, not a fresh snapshot from the executor. After a function call the displayed state may lag by one step.Expected: The
storagecommand should callengine.executor().get_storage_snapshot()and display the current ledger state, consistent with how the REPL does it.