mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-17 18:30:45 +00:00
Nit: Fix the gnark g1 receivers
This commit is contained in:
parent
91cec92bf3
commit
f710560fe4
1 changed files with 3 additions and 3 deletions
|
|
@ -72,13 +72,13 @@ func (g *G1) Unmarshal(buf []byte) (int, error) {
|
||||||
// The output is in EVM format: 64 bytes total.
|
// The output is in EVM format: 64 bytes total.
|
||||||
// [32-byte x coordinate][32-byte y coordinate]
|
// [32-byte x coordinate][32-byte y coordinate]
|
||||||
// where each coordinate is a big-endian integer padded to 32 bytes.
|
// where each coordinate is a big-endian integer padded to 32 bytes.
|
||||||
func (p *G1) Marshal() []byte {
|
func (g *G1) Marshal() []byte {
|
||||||
output := make([]byte, 64)
|
output := make([]byte, 64)
|
||||||
|
|
||||||
xBytes := p.inner.X.Bytes()
|
xBytes := g.inner.X.Bytes()
|
||||||
copy(output[:32], xBytes[:])
|
copy(output[:32], xBytes[:])
|
||||||
|
|
||||||
yBytes := p.inner.Y.Bytes()
|
yBytes := g.inner.Y.Bytes()
|
||||||
copy(output[32:64], yBytes[:])
|
copy(output[32:64], yBytes[:])
|
||||||
|
|
||||||
return output
|
return output
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue