mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-02-12 01:55:48 +00:00
Fix typos
This commit is contained in:
parent
f65c37ea01
commit
63be3c9470
@ -430,7 +430,7 @@ pub fn generate_parameters<E, C>(
|
|||||||
&worker
|
&worker
|
||||||
);
|
);
|
||||||
|
|
||||||
// Evaluate for auxillary variables.
|
// Evaluate for auxiliary variables.
|
||||||
eval(
|
eval(
|
||||||
&g1_wnaf,
|
&g1_wnaf,
|
||||||
&g2_wnaf,
|
&g2_wnaf,
|
||||||
|
@ -221,7 +221,7 @@ pub struct Parameters<E: Engine> {
|
|||||||
pub h: Arc<Vec<E::G1Affine>>,
|
pub h: Arc<Vec<E::G1Affine>>,
|
||||||
|
|
||||||
// Elements of the form (beta * u_i(tau) + alpha v_i(tau) + w_i(tau)) / delta
|
// Elements of the form (beta * u_i(tau) + alpha v_i(tau) + w_i(tau)) / delta
|
||||||
// for all auxillary inputs. Variables can never be unconstrained, so this
|
// for all auxiliary inputs. Variables can never be unconstrained, so this
|
||||||
// never contains points at infinity.
|
// never contains points at infinity.
|
||||||
pub l: Arc<Vec<E::G1Affine>>,
|
pub l: Arc<Vec<E::G1Affine>>,
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ impl Variable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Represents the index of either an input variable or
|
/// Represents the index of either an input variable or
|
||||||
/// auxillary variable.
|
/// auxiliary variable.
|
||||||
#[derive(Copy, Clone, PartialEq, Debug)]
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||||
pub enum Index {
|
pub enum Index {
|
||||||
Input(usize),
|
Input(usize),
|
||||||
@ -181,7 +181,7 @@ pub enum SynthesisError {
|
|||||||
IoError(io::Error),
|
IoError(io::Error),
|
||||||
/// During verification, our verifying key was malformed.
|
/// During verification, our verifying key was malformed.
|
||||||
MalformedVerifyingKey,
|
MalformedVerifyingKey,
|
||||||
/// During CRS generation, we observed an unconstrained auxillary variable
|
/// During CRS generation, we observed an unconstrained auxiliary variable
|
||||||
UnconstrainedVariable
|
UnconstrainedVariable
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -201,7 +201,7 @@ impl Error for SynthesisError {
|
|||||||
SynthesisError::UnexpectedIdentity => "encountered an identity element in the CRS",
|
SynthesisError::UnexpectedIdentity => "encountered an identity element in the CRS",
|
||||||
SynthesisError::IoError(_) => "encountered an I/O error",
|
SynthesisError::IoError(_) => "encountered an I/O error",
|
||||||
SynthesisError::MalformedVerifyingKey => "malformed verifying key",
|
SynthesisError::MalformedVerifyingKey => "malformed verifying key",
|
||||||
SynthesisError::UnconstrainedVariable => "auxillary variable was unconstrained"
|
SynthesisError::UnconstrainedVariable => "auxiliary variable was unconstrained"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user