Tidy up var name in BLS

This commit is contained in:
Paul Hauner 2018-12-26 08:54:26 +11:00
parent 810156a0fb
commit 4330acdd96
No known key found for this signature in database
GPG Key ID: 303E4494BB28068C

View File

@ -24,8 +24,8 @@ impl AggregateSignature {
///
/// Only returns `true` if the set of keys in the `AggregatePublicKey` match the set of keys
/// that signed the `AggregateSignature`.
pub fn verify(&self, msg: &[u8], avk: &AggregatePublicKey) -> bool {
self.0.verify(msg, avk)
pub fn verify(&self, msg: &[u8], aggregate_public_key: &AggregatePublicKey) -> bool {
self.0.verify(msg, aggregate_public_key)
}
}