Skip to content

Commit

Permalink
fix: conflicting implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Feb 14, 2024
1 parent de755f7 commit bea68b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust-bindings/bls-signatures/src/elements.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ pub struct G2Element {
}

// G2Element is immutable and thread safe
unsafe impl Send for G1Element {}
unsafe impl Sync for G1Element {}
unsafe impl Send for G2Element {}
unsafe impl Sync for G2Element {}

impl PartialEq for G2Element {
fn eq(&self, other: &Self) -> bool {
Expand Down

0 comments on commit bea68b2

Please sign in to comment.