mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-30 15:01:35 +00:00
11 lines
252 B
Go
11 lines
252 B
Go
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
|
|
}
|