From b45617d1fdae9c847d5989f167c9930ee4cae27e Mon Sep 17 00:00:00 2001 From: hu55a1n1 Date: Thu, 11 Jan 2024 04:35:42 -0800 Subject: [PATCH] Clippy fix --- utils/cw-proof/src/verifier/cw.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/cw-proof/src/verifier/cw.rs b/utils/cw-proof/src/verifier/cw.rs index 9836618..a685189 100644 --- a/utils/cw-proof/src/verifier/cw.rs +++ b/utils/cw-proof/src/verifier/cw.rs @@ -17,7 +17,7 @@ impl CwVerifier<'_> { pub fn verify( &self, proofs: &[CommitmentProof; 2], - root: &Vec, + #[allow(clippy::ptr_arg)] root: &Vec, // TODO(hu55a1n1): fix this using `Cow` types keys: &[Vec; 2], value: &[u8], ) -> Result<(), ProofError> {