mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-08 09:16:00 +00:00
Tidy up var name in BLS
This commit is contained in:
@@ -24,8 +24,8 @@ impl AggregateSignature {
|
|||||||
///
|
///
|
||||||
/// Only returns `true` if the set of keys in the `AggregatePublicKey` match the set of keys
|
/// Only returns `true` if the set of keys in the `AggregatePublicKey` match the set of keys
|
||||||
/// that signed the `AggregateSignature`.
|
/// that signed the `AggregateSignature`.
|
||||||
pub fn verify(&self, msg: &[u8], avk: &AggregatePublicKey) -> bool {
|
pub fn verify(&self, msg: &[u8], aggregate_public_key: &AggregatePublicKey) -> bool {
|
||||||
self.0.verify(msg, avk)
|
self.0.verify(msg, aggregate_public_key)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user