Browse Source

Derive Eq trait for Signature

pull/1/head
Ahmad 3 weeks ago
parent
commit
df2d8d94f9
No known key found for this signature in database GPG Key ID: FF00EBC04B2D00AA
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/lib.rs

+ 1
- 1
src/lib.rs

@ -268,7 +268,7 @@ fn blh(b: &[u8]) -> Vec {
hasher.finalize().to_vec()
}
#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Signature {
pub r_b8: Point,
pub s: Fr,

Loading…
Cancel
Save