Skip to content
Merged
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
3 changes: 1 addition & 2 deletions crates/core/executor/src/opcode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
use enum_map::Enum;
use p3_field::Field;
use std::fmt::Display;
// use p3_field::Field;
use serde::{Deserialize, Serialize};
use std::fmt::Display;

/// An opcode (short for "operation code") specifies the operation to be performed by the processor.
#[allow(non_camel_case_types)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl Syscall for Sha256CompressSyscall {
h_write_records.push(record);
}

// Push the SHA extend event.
// Push the SHA compress event.
let shard = rt.current_shard();
let event = PrecompileEvent::ShaCompress(ShaCompressEvent {
shard,
Expand Down
2 changes: 1 addition & 1 deletion crates/stark/src/air/public_values.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ impl<F: FieldAlgebra> From<PublicValues<u32, u32>> for PublicValues<Word<F>, F>
mod tests {
use crate::air::public_values;

/// Check that the [`PI_DIGEST_NUM_WORDS`] number match the zkVM crate's.
/// Check that the [`PV_DIGEST_NUM_WORDS`] number match the zkVM crate's.
#[test]
fn test_public_values_digest_num_words_consistency_zkvm() {
assert_eq!(public_values::PV_DIGEST_NUM_WORDS, zkm_zkvm::PV_DIGEST_NUM_WORDS);
Expand Down