Skip to content

Commit

Permalink
refactor: remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcosNicolau committed Nov 26, 2024
1 parent 3f184da commit 55a9b0c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions telemetry_api/bls_verifier/bls_verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ func verifySignature(signature []byte, pubkeyG1PointsBytes [2][]byte, pubkeyG2By
pubkeyG2 := bls.NewZeroG2Point()
_, err := pubkeyG2.SetBytes(pubkeyG2Bytes)
if err != nil {
log.Fatalf("ERR IS IN G2")
return false, err
}

Expand All @@ -85,7 +84,6 @@ func verifySignature(signature []byte, pubkeyG1PointsBytes [2][]byte, pubkeyG2By
// verify the equivalence between the points in the generators
valid, err := pubkeyG1.VerifyEquivalence(pubkeyG2)
if err != nil || !valid {
log.Fatalf("ERR IS IN EQUIVALENCE")
return false, err
}

Expand Down

0 comments on commit 55a9b0c

Please sign in to comment.