From b6a27d3747b9e4fd29ce833c474cc3e25cd33b03 Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Fri, 14 May 2021 19:25:41 -0300 Subject: [PATCH] allow dead code in `KeyPackage` struct --- src/frost.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frost.rs b/src/frost.rs index 7ffd9b3..25640de 100644 --- a/src/frost.rs +++ b/src/frost.rs @@ -140,6 +140,7 @@ impl TryFrom for KeyPackage { /// When using a central dealer, [`SharePackage`]s are distributed to /// participants, who then perform verification, before deriving /// [`KeyPackage`]s, which they store to later use during signing. +#[allow(dead_code)] pub struct KeyPackage { index: u8, secret_share: Secret,