Merge pull request #251 from fabric-and-ink/quench-warning

Quench snake case warning
This commit is contained in:
Henry de Valence 2019-05-26 20:35:27 -07:00 committed by GitHub
commit baaeed23fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,8 @@
//! Module for common traits.
#![allow(non_snake_case)]
use core::borrow::Borrow;
use subtle;
@ -208,7 +210,6 @@ pub trait VartimeMultiscalarMul {
///
/// assert_eq!(A1.compress(), (-A2).compress());
/// ```
#[allow(non_snake_case)]
fn vartime_multiscalar_mul<I, J>(scalars: I, points: J) -> Self::Point
where
I: IntoIterator,