From 93a95b16ae59a8c36d19b8660c137ce965d2e57a Mon Sep 17 00:00:00 2001 From: conduition Date: Sun, 10 Mar 2024 16:59:11 +0000 Subject: [PATCH] add Eq and PartialEq to MarketMaker --- src/parties.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parties.rs b/src/parties.rs index d0ae3a1..5a7cf2f 100644 --- a/src/parties.rs +++ b/src/parties.rs @@ -3,7 +3,7 @@ use secp::Point; /// The agent who provides the on-chain capital to facilitate the ticketed DLC. /// Could be one of the players in the DLC, or could be a neutral 3rd party /// who wishes to profit by leveraging their capital. -#[derive(Debug, Clone)] +#[derive(Debug, Clone, Eq, PartialEq)] pub struct MarketMaker { pub pubkey: Point, }