Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hteevoli authored Oct 29, 2024
1 parent a1d30dc commit cdb4b87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/vm/eof.go
Original file line number Diff line number Diff line change
Expand Up @@ -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...)
Expand Down

0 comments on commit cdb4b87

Please sign in to comment.