Revert "core/asm: remove unused return value (#27272)"

This reverts commit a0c2037a67.
This commit is contained in:
devopsbo3 2023-11-10 12:27:53 -06:00 committed by GitHub
parent 0037a97987
commit 3b50f2bf7d

View file

@ -157,12 +157,13 @@ func (c *Compiler) compileLine() error {
} }
// compileNumber compiles the number to bytes // compileNumber compiles the number to bytes
func (c *Compiler) compileNumber(element token) { func (c *Compiler) compileNumber(element token) (int, error) {
num := math.MustParseBig256(element.text).Bytes() num := math.MustParseBig256(element.text).Bytes()
if len(num) == 0 { if len(num) == 0 {
num = []byte{0} num = []byte{0}
} }
c.pushBin(num) c.pushBin(num)
return len(num), nil
} }
// compileElement compiles the element (push & label or both) // compileElement compiles the element (push & label or both)