Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update error.rs #306

Merged
merged 1 commit into from
Dec 10, 2024
Merged
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
10 changes: 5 additions & 5 deletions core/src/prover/nova/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ pub use nexus_vm::error::NexusVMError;
/// Errors related to proof generation
#[derive(Debug)]
pub enum ProofError {
/// An error occured loading or executing program
/// An error occurred loading or executing program
NexusVMError(NexusVMError),

/// An error occurred reading file system
IOError(std::io::Error),

/// An error occured during circuit synthesis
/// An error occurred during circuit synthesis
CircuitError(SynthesisError),

/// An error occured serializing to disk
/// An error occurred serializing to disk
SerError(SerializationError),

/// The witness does not satisfy the constraints
Expand All @@ -37,10 +37,10 @@ pub enum ProofError {
/// SRS for polynomial commitment scheme is missing
MissingSRS,

/// An error occured while sampling the test SRS
/// An error occurred while sampling the test SRS
SRSSamplingError,

/// An error occured while running the Spartan compression prover
/// An error occurred while running the Spartan compression prover
CompressionError(SpartanError),

/// A proof has been read from a file that does not match the expected format
Expand Down
Loading