Merge pull request #120 from daira/fix-clippy-lints

Fix clippy lints
This commit is contained in:
str4d 2021-06-16 20:24:02 +01:00 committed by GitHub
commit 0b6bd66714
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -322,7 +322,7 @@ impl Builder {
// Create the proof. // Create the proof.
let instances: Vec<_> = actions let instances: Vec<_> = actions
.iter() .iter()
.map(|a| a.to_instance(flags, anchor.clone())) .map(|a| a.to_instance(flags, anchor))
.collect(); .collect();
let proof = Proof::create(pk, &circuits, &instances)?; let proof = Proof::create(pk, &circuits, &instances)?;

View File

@ -53,7 +53,7 @@ impl ExtractedNoteCommitment {
} }
/// Serialize the value commitment to its canonical byte representation. /// Serialize the value commitment to its canonical byte representation.
pub fn to_bytes(&self) -> [u8; 32] { pub fn to_bytes(self) -> [u8; 32] {
self.0.to_bytes() self.0.to_bytes()
} }
} }

View File

@ -259,7 +259,7 @@ impl<T> From<&Action<T>> for CompactAction {
fn from(action: &Action<T>) -> Self { fn from(action: &Action<T>) -> Self {
CompactAction { CompactAction {
ephemeral_key: action.ephemeral_key(), ephemeral_key: action.ephemeral_key(),
cmx: action.cmx().clone(), cmx: *action.cmx(),
enc_ciphertext: action.encrypted_note().enc_ciphertext[..52] enc_ciphertext: action.encrypted_note().enc_ciphertext[..52]
.try_into() .try_into()
.unwrap(), .unwrap(),