neoneo-go/pkg/interop/neogointernal/opcode.go

12 lines
252 B
Go
Raw Normal View History

package neogointernal
// Opcode1 emits opcode with 1 argument.
func Opcode1(op string, arg interface{}) interface{} {
return nil
}
// Opcode2 emits opcode with 2 arguments.
func Opcode2(op string, arg1, arg2 interface{}) interface{} {
return nil
}