mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-08 20:11:22 +00:00
Rename voted_hashmap to voted_hashset
This commit is contained in:
parent
a998ac2a12
commit
9a59908506
@ -164,7 +164,7 @@ impl<T> AttestationValidationContext<T>
|
|||||||
a.justified_slot)
|
a.justified_slot)
|
||||||
};
|
};
|
||||||
|
|
||||||
let voted_hashmap =
|
let voted_hashset =
|
||||||
verify_aggregate_signature_for_indices(
|
verify_aggregate_signature_for_indices(
|
||||||
&signed_message,
|
&signed_message,
|
||||||
&a.aggregate_sig,
|
&a.aggregate_sig,
|
||||||
@ -175,7 +175,7 @@ impl<T> AttestationValidationContext<T>
|
|||||||
/*
|
/*
|
||||||
* If the hashmap of voters is None, the signature verification failed.
|
* If the hashmap of voters is None, the signature verification failed.
|
||||||
*/
|
*/
|
||||||
match voted_hashmap {
|
match voted_hashset {
|
||||||
None => Err(AttestationValidationError::BadAggregateSignature),
|
None => Err(AttestationValidationError::BadAggregateSignature),
|
||||||
Some(hashmap) => Ok(hashmap),
|
Some(hashmap) => Ok(hashmap),
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user