stack_table.go 400 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package vm

import (
	"fmt"

	"github.com/ethereum/go-ethereum/params"
)

func makeStackFunc(pop, push int) stackValidationFunc {
	return func(stack *Stack) error {
		if err := stack.require(pop); err != nil {
			return err
		}

15 16
		if push > 0 && stack.len()-pop+push > int(params.StackLimit) {
			return fmt.Errorf("stack limit reached %d (%d)", stack.len(), params.StackLimit)
17 18 19 20
		}
		return nil
	}
}