Clippy lint to align order of members of redpallas::VerificationKey

This commit is contained in:
Deirdre Connolly 2021-04-08 11:32:52 -04:00 committed by Deirdre Connolly
parent 48674a9749
commit 4ee12d1170
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ impl<T: SigType> From<&pallas::Scalar> for VerificationKey<T> {
_marker: PhantomData,
};
Self { bytes, point }
Self { point, bytes }
}
}