From d22dcf583a42162c6a94a9fc773fd0d8a322c3b6 Mon Sep 17 00:00:00 2001 From: Bulik Date: Sun, 10 Dec 2023 17:33:36 +0100 Subject: [PATCH 1/2] fix: link to arkworks data structures --- subroutines/src/pcs/univariate_kzg/srs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subroutines/src/pcs/univariate_kzg/srs.rs b/subroutines/src/pcs/univariate_kzg/srs.rs index 9aeaaa89..b9f36c61 100644 --- a/subroutines/src/pcs/univariate_kzg/srs.rs +++ b/subroutines/src/pcs/univariate_kzg/srs.rs @@ -16,7 +16,7 @@ use std::ops::Mul; /// `UniversalParams` are the universal parameters for the KZG10 scheme. // Adapted from -// https://github.com/arkworks-rs/poly-commit/blob/master/src/kzg10/data_structures.rs#L20 +// https://github.com/arkworks-rs/poly-commit/blob/master/poly-commit/src/kzg10/data_structures.rs#L24 #[derive(Debug, Clone, Eq, PartialEq, CanonicalSerialize, CanonicalDeserialize, Default)] pub struct UnivariateUniversalParams { /// Group elements of the form `{ \beta^i G }`, where `i` ranges from 0 to From 06594a1c8bc178355dd5559ae3242f9ae33b0c86 Mon Sep 17 00:00:00 2001 From: Bulik Date: Tue, 12 Dec 2023 21:58:57 +0100 Subject: [PATCH 2/2] fix: link to arkworks data structures --- subroutines/src/pcs/univariate_kzg/srs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subroutines/src/pcs/univariate_kzg/srs.rs b/subroutines/src/pcs/univariate_kzg/srs.rs index b9f36c61..c8e00bcb 100644 --- a/subroutines/src/pcs/univariate_kzg/srs.rs +++ b/subroutines/src/pcs/univariate_kzg/srs.rs @@ -16,7 +16,7 @@ use std::ops::Mul; /// `UniversalParams` are the universal parameters for the KZG10 scheme. // Adapted from -// https://github.com/arkworks-rs/poly-commit/blob/master/poly-commit/src/kzg10/data_structures.rs#L24 +// https://github.com/arkworks-rs/poly-commit/blob/c724fa666e935bbba8db5a1421603bab542e15ab/poly-commit/src/kzg10/data_structures.rs#L24 #[derive(Debug, Clone, Eq, PartialEq, CanonicalSerialize, CanonicalDeserialize, Default)] pub struct UnivariateUniversalParams { /// Group elements of the form `{ \beta^i G }`, where `i` ranges from 0 to