File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " spartan"
3
- version = " 0.8 .0"
3
+ version = " 0.9 .0"
4
4
authors = [
" Srinath Setty <[email protected] >" ]
5
5
edition = " 2021"
6
6
description = " High-speed zkSNARKs without trusted setup"
Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ impl<'b> MulAssign<&'b Scalar> for GroupElement {
30
30
}
31
31
}
32
32
33
- impl < ' a , ' b > Mul < & ' b Scalar > for & ' a GroupElement {
33
+ impl < ' b > Mul < & ' b Scalar > for & GroupElement {
34
34
type Output = GroupElement ;
35
35
fn mul ( self , scalar : & ' b Scalar ) -> GroupElement {
36
36
self * Scalar :: decompress_scalar ( scalar)
37
37
}
38
38
}
39
39
40
- impl < ' a , ' b > Mul < & ' b GroupElement > for & ' a Scalar {
40
+ impl < ' b > Mul < & ' b GroupElement > for & Scalar {
41
41
type Output = GroupElement ;
42
42
43
43
fn mul ( self , point : & ' b GroupElement ) -> GroupElement {
You can’t perform that action at this time.
0 commit comments