diff --git a/src/orchard_flavor.rs b/src/orchard_flavor.rs index a9cc257ae..22286f8e1 100644 --- a/src/orchard_flavor.rs +++ b/src/orchard_flavor.rs @@ -3,11 +3,11 @@ use crate::{circuit::OrchardCircuit, domain::OrchardDomainCommon}; /// Represents the "Vanilla" variation ("flavor") of the Orchard protocol. -#[derive(Debug, Clone, Default)] +#[derive(Debug, Clone, Default, PartialEq, Eq)] pub struct OrchardVanilla; /// Represents the "ZSA" variation ("flavor") of the Orchard protocol. -#[derive(Debug, Clone, Default)] +#[derive(Debug, Clone, Default, PartialEq, Eq)] pub struct OrchardZSA; /// Represents the flavor of the Orchard protocol.