57f4e90257
This reverts commit 8b57c494908637a5c0e74f8f7a13b3218e026757.
29 lines
559 B
Go
29 lines
559 B
Go
package vm
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ethereum/go-ethereum/params"
|
|
)
|
|
|
|
func makeStackFunc(pop, diff int) stackValidationFunc {
|
|
return func(stack *Stack) error {
|
|
if err := stack.require(pop); err != nil {
|
|
return err
|
|
}
|
|
|
|
if int64(stack.len()+diff) > params.StackLimit.Int64() {
|
|
return fmt.Errorf("stack limit reached %d (%d)", stack.len(), params.StackLimit)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func makeDupStackFunc(n int) stackValidationFunc {
|
|
return makeStackFunc(n, 1)
|
|
}
|
|
|
|
func makeSwapStackFunc(n int) stackValidationFunc {
|
|
return makeStackFunc(n, 0)
|
|
}
|