neoneo-go/pkg/vm/vm_ops.go

8 lines
176 B
Go
Raw Normal View History

package vm
import "github.com/CityOfZion/neo-go/pkg/vm/stack"
var opFunc = map[stack.Instruction]func(ctx *stack.Context, istack *stack.Invocation) error{
stack.ADD: Add,
}