Skip to content
This repository was archived by the owner on Jun 10, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/cannon/src/kernel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ where
delta.subsec_millis(),
step,
self.ins_state.state.pc,
self.ins_state.state.memory.get_memory(self.ins_state.state.pc)?,
self.ins_state.state.memory.get_memory_b4(self.ins_state.state.pc)?,
(step - start_step) as f64 / delta.as_secs_f64(),
self.ins_state.state.memory.page_count(),
self.ins_state.state.memory.usage(),
Expand Down
2 changes: 1 addition & 1 deletion crates/cannon/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub struct Proof {
pub step_input: Vec<u8>,
pub oracle_key: Option<Vec<u8>>,
pub oracle_value: Option<Vec<u8>>,
pub oracle_offset: Option<u32>,
pub oracle_offset: Option<u64>,
pub oracle_input: Option<Vec<u8>>,
}

Expand Down
Loading