mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +00:00
Fix comments
This commit is contained in:
parent
c97da352ee
commit
7a3caaad59
1 changed files with 2 additions and 2 deletions
|
|
@ -83,14 +83,14 @@ pub enum Error {
|
|||
}
|
||||
|
||||
impl<C: CurveAffine> ProvingKey<C> {
|
||||
/// Get the underlying `VerifyingKey`
|
||||
/// Get the underlying [`VerifyingKey`].
|
||||
pub fn get_vk(&self) -> &VerifyingKey<C> {
|
||||
&self.vk
|
||||
}
|
||||
}
|
||||
|
||||
impl<C: CurveAffine> VerifyingKey<C> {
|
||||
/// Get the underlying `VerifyingKey`
|
||||
/// Get the underlying [`EvaluationDomain`].
|
||||
pub fn get_domain(&self) -> &EvaluationDomain<C::Scalar> {
|
||||
&self.domain
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue