From b1dc0b77f22493d5215227f9e180273d9ea3ff36 Mon Sep 17 00:00:00 2001 From: LLFourn Date: Tue, 5 Nov 2024 11:55:01 +1100 Subject: [PATCH] =?UTF-8?q?[=E2=9D=84]=20Add=20some=20missing=20PartialEq?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schnorr_fun/src/frost/chilldkg.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schnorr_fun/src/frost/chilldkg.rs b/schnorr_fun/src/frost/chilldkg.rs index b02af725..3d9bd433 100644 --- a/schnorr_fun/src/frost/chilldkg.rs +++ b/schnorr_fun/src/frost/chilldkg.rs @@ -67,7 +67,7 @@ pub mod simplepedpop { /// A party that generates secret input to the key generation. You need at least one of these /// and if at least one of these parties is honest then the final secret key will not be known by an /// attacker (unless they obtain `t` shares!). - #[derive(Clone, Debug)] + #[derive(Clone, Debug, PartialEq)] #[cfg_attr( feature = "bincode", derive(crate::fun::bincode::Encode, crate::fun::bincode::Decode), @@ -472,7 +472,7 @@ pub mod encpedpop { /// A party that generates secret input to the key generation. You need at least one of these /// and if at least one of these parties is honest then the final secret key will not be known by an /// attacker (unless they obtain `t` shares!). - #[derive(Clone, Debug)] + #[derive(Clone, Debug, PartialEq)] #[cfg_attr( feature = "bincode", derive(crate::fun::bincode::Encode, crate::fun::bincode::Decode),