From 81d3052a464184fac1897ee48143fff9c76a29d2 Mon Sep 17 00:00:00 2001 From: kazak Date: Sun, 2 Feb 2025 11:59:09 +0200 Subject: [PATCH] chore: fix incorrect error message in fuzzCrossG2Add function --- tests/fuzzers/bls12381/bls12381_fuzz.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fuzzers/bls12381/bls12381_fuzz.go b/tests/fuzzers/bls12381/bls12381_fuzz.go index 5cb05b5660..2e925f7848 100644 --- a/tests/fuzzers/bls12381/bls12381_fuzz.go +++ b/tests/fuzzers/bls12381/bls12381_fuzz.go @@ -140,7 +140,7 @@ func fuzzCrossG1Add(data []byte) int { bl3 := blst.P1AffinesAdd([]*blst.P1Affine{bl1, bl2}) if !(bytes.Equal(cp.Marshal(), bl3.Serialize())) { - panic("G1 point addition mismatch blst / geth ") + panic("G2 point addition mismatch blst / geth ") } return 1