mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-02-06 19:41:17 +00:00
7 lines
176 B
Go
7 lines
176 B
Go
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,
|
|
}
|