From c83cdbb79a97e263558b631c10b36ad0d77ecadd Mon Sep 17 00:00:00 2001 From: Kevaundray Wedderburn Date: Tue, 17 Jun 2025 15:16:58 +0200 Subject: [PATCH] shorter comment --- crypto/bn256/gnark/g2.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bn256/gnark/g2.go b/crypto/bn256/gnark/g2.go index 619660f771..c7b0ad65d2 100644 --- a/crypto/bn256/gnark/g2.go +++ b/crypto/bn256/gnark/g2.go @@ -73,7 +73,7 @@ func (g *G2) Unmarshal(buf []byte) (int, error) { // // The output is in EVM format: 128 bytes total. // [32-byte x.real][32-byte x.imag][32-byte y.real][32-byte y.imag] -// where each value is a big-endian integer padded to 32 bytes. +// where each value is a big-endian integer. func (g *G2) Marshal() []byte { output := make([]byte, 128)