mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +00:00
20 lines
410 B
Go
20 lines
410 B
Go
package vm
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ubiq/go-ubiq/params"
|
|
)
|
|
|
|
func makeStackFunc(pop, push int) stackValidationFunc {
|
|
return func(stack *Stack) error {
|
|
if err := stack.require(pop); err != nil {
|
|
return err
|
|
}
|
|
|
|
if push > 0 && int64(stack.len()-pop+push) > params.StackLimit.Int64() {
|
|
return fmt.Errorf("stack limit reached %d (%d)", stack.len(), params.StackLimit.Int64())
|
|
}
|
|
return nil
|
|
}
|
|
}
|