From eba27c3583797c237cea0585a5af57143c54d2c0 Mon Sep 17 00:00:00 2001 From: kazak Date: Mon, 3 Feb 2025 22:14:09 +0200 Subject: [PATCH] Update bls12381_fuzz.go --- tests/fuzzers/bls12381/bls12381_fuzz.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fuzzers/bls12381/bls12381_fuzz.go b/tests/fuzzers/bls12381/bls12381_fuzz.go index 2e925f7848..a17c128b7f 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("G2 point addition mismatch blst / geth ") + panic("G1 point addition mismatch blst / geth ") } return 1 @@ -168,7 +168,7 @@ func fuzzCrossG2Add(data []byte) int { bl3 := blst.P2AffinesAdd([]*blst.P2Affine{bl1, bl2}) if !(bytes.Equal(gp.Marshal(), bl3.Serialize())) { - panic("G1 point addition mismatch blst / geth ") + panic("G2 point addition mismatch blst / geth ") } return 1