mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 18:02:24 +00:00
lint
This commit is contained in:
parent
a1d30dc66c
commit
cdb4b87ce6
1 changed files with 1 additions and 1 deletions
|
|
@ -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...)
|
||||
|
|
|
|||
Loading…
Reference in a new issue