diff --git a/rocketpool/eip712/eip712.go b/rocketpool/eip712/eip712.go index 5fb166a10..3a855fa08 100644 --- a/rocketpool/eip712/eip712.go +++ b/rocketpool/eip712/eip712.go @@ -56,5 +56,5 @@ func (c *Components) UnmarshalText(text []byte) error { } func (c *Components) MarshalText() ([]byte, error) { - return []byte(fmt.Sprintf("0x%x%x%x", c.R, c.S, c.V)), nil + return fmt.Appendf(nil, "0x%x%x%x", c.R, c.S, c.V), nil }