Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion zk-sdk/src/sigma_proofs/ciphertext_ciphertext_equality.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ impl CiphertextCiphertextEqualityProof {
&(&ww * &self.z_r), // ww * z_r
&(&ww_negated * &c), // -ww * c
&ww_negated, // -ww
&(&www * &self.z_r), // z_r
&(&www * &self.z_r), // www * z_r
&(&www_negated * &c), // -www * c
&www_negated,
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,10 @@ impl GroupedCiphertext3HandlesValidityProof {
&Y_1, // Y_1
P_second, // P_second
D_second, // D_second
&Y_2, // Y_1
&Y_2, // Y_2
P_third, // P_third
D_third, // D_third
&Y_3, // Y_2
&Y_3, // Y_3
],
);

Expand Down
Loading