Skip to content

Commit

Permalink
Update error.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
donatik27 authored and sjudson committed Dec 10, 2024
1 parent 483cb46 commit 2aeb882
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit 2aeb882

Please sign in to comment.