From cdb4b87ce6bddfa86f932b079e3da119069ab5cb Mon Sep 17 00:00:00 2001 From: Hteev Oli Date: Tue, 29 Oct 2024 16:53:37 +0800 Subject: [PATCH] lint --- core/vm/eof.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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...)