forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
400 B
20 lines
400 B
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
|
|
}
|
|
|
|
if push > 0 && stack.len()-pop+push > int(params.StackLimit) {
|
|
return fmt.Errorf("stack limit reached %d (%d)", stack.len(), params.StackLimit)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
|