mirror of
https://github.com/sigp/lighthouse.git
synced 2026-07-03 21:04:28 +00:00
Run rustfmt
This commit is contained in:
@@ -48,10 +48,8 @@ impl AggregateSignature {
|
|||||||
domain: u64,
|
domain: u64,
|
||||||
aggregate_public_keys: &[&AggregatePublicKey],
|
aggregate_public_keys: &[&AggregatePublicKey],
|
||||||
) -> bool {
|
) -> bool {
|
||||||
let aggregate_public_keys: Vec<&RawAggregatePublicKey> = aggregate_public_keys
|
let aggregate_public_keys: Vec<&RawAggregatePublicKey> =
|
||||||
.iter()
|
aggregate_public_keys.iter().map(|pk| pk.as_raw()).collect();
|
||||||
.map(|pk| pk.as_raw())
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
// Messages are concatenated into one long message.
|
// Messages are concatenated into one long message.
|
||||||
let mut msg: Vec<u8> = vec![];
|
let mut msg: Vec<u8> = vec![];
|
||||||
|
|||||||
Reference in New Issue
Block a user