Skip to content

Commit

Permalink
[❄] Add some missing PartialEq
Browse files Browse the repository at this point in the history
  • Loading branch information
LLFourn committed Nov 5, 2024
1 parent 8e6fd71 commit b1dc0b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schnorr_fun/src/frost/chilldkg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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),
Expand Down

0 comments on commit b1dc0b7

Please sign in to comment.