From 2d6464cd71b658ebc41c686bc602667c9c0b9e53 Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Sat, 16 Dec 2023 19:04:52 +0100 Subject: [PATCH] Allow `unused_variables` for one `_test_vectors` method --- lightning/src/util/crypto.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lightning/src/util/crypto.rs b/lightning/src/util/crypto.rs index bb5903b2c..98963c7c2 100644 --- a/lightning/src/util/crypto.rs +++ b/lightning/src/util/crypto.rs @@ -64,6 +64,7 @@ pub fn sign(ctx: &Secp256k1, msg: &Message, sk: &SecretKey) -> Si } #[inline] +#[allow(unused_variables)] pub fn sign_with_aux_rand( ctx: &Secp256k1, msg: &Message, sk: &SecretKey, entropy_source: &ES ) -> Signature where ES::Target: EntropySource { -- 2.39.5