Fix outdated docstring for verify_batch().

This commit is contained in:
Isis Lovecruft 2019-12-11 22:48:33 +00:00
parent 7db743bd43
commit 9363690191
No known key found for this signature in database
GPG key ID: AB41313533E8E812

View file

@ -111,7 +111,6 @@ fn zero_rng() -> ZeroRng {
/// * `messages` is a slice of byte slices, one per signed message.
/// * `signatures` is a slice of `Signature`s.
/// * `public_keys` is a slice of `PublicKey`s.
/// * `csprng` is an implementation of `Rng + CryptoRng`.
///
/// # Returns
///
@ -195,7 +194,6 @@ pub fn verify_batch(
.map(|_| Scalar::from(prng.gen::<u128>()))
.collect();
// Compute the basepoint coefficient, ∑ s[i]z[i] (mod l)
let B_coefficient: Scalar = signatures
.iter()