Skip to content

Commit 80a0001

Browse files
committed
fmt
1 parent 44a34a8 commit 80a0001

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pallets/drand/src/utils.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ pub fn make_msm_args<Group: ark_ec::VariableBaseMSM>(
7474

7575
pub fn serialize_argument(argument: impl CanonicalSerialize) -> Vec<u8> {
7676
let mut buf = vec![0; argument.serialized_size(Compress::No)];
77-
argument.serialize_uncompressed(buf.as_mut_slice()).unwrap_or_default();
77+
argument
78+
.serialize_uncompressed(buf.as_mut_slice())
79+
.unwrap_or_default();
7880
buf
7981
}

0 commit comments

Comments
 (0)