Skip to content

Commit

Permalink
feat(pkarr): derive PartialEq and Eq for Keypair
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuhvi committed Sep 30, 2024
1 parent 434fa10 commit 0ff223f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkarr/src/base/keys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use std::{
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

#[derive(Clone)]
#[derive(Clone, PartialEq, Eq)]
/// Ed25519 keypair to sign dns [Packet](crate::SignedPacket)s.
pub struct Keypair(SigningKey);

Expand Down

0 comments on commit 0ff223f

Please sign in to comment.