Merge pull request #57 from zkcrypto/fix-nightly-deref-issue

Fix deref breakage with nightly-2020-10-06
This commit is contained in:
ebfull 2020-11-02 09:23:04 -07:00 committed by GitHub
commit a2c22a474e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -398,8 +398,8 @@ where
*b_g2 = g2_wnaf.scalar(&bt);
}
at.mul_assign(&beta);
bt.mul_assign(&alpha);
at *= beta;
bt *= alpha;
let mut e = at;
e.add_assign(&bt);