diff --git a/core/vm/eof.go b/core/vm/eof.go index f5a7d89b2a..fd85374be6 100644 --- a/core/vm/eof.go +++ b/core/vm/eof.go @@ -137,7 +137,7 @@ func (c *Container) MarshalBinary() []byte { // Write section contents. for _, ty := range c.types { - b = append(b, ty.inputs, ty.outputs, byte(ty.maxStackHeight >> 8), byte(ty.maxStackHeight & 0x00ff)) + b = append(b, ty.inputs, ty.outputs, byte(ty.maxStackHeight>>8), byte(ty.maxStackHeight&0x00ff)) } b = slices.Concat(b, slices.Concat(c.codeSections...), slices.Concat(encodedContainer...)) b = append(b, c.data...)