neoneo-go/pkg/interop/engine/engine.go

15 lines
508 B
Go
Raw Normal View History

2020-05-18 09:01:00 +00:00
/*
Package engine allows to make contract calls.
2020-05-18 09:01:00 +00:00
It's roughly similar in function to ExecutionEngine class in the Neo .net
framework.
*/
package engine
2020-05-18 09:01:00 +00:00
// AppCall executes previously deployed blockchain contract with specified hash
// (160 bit in BE form represented as 20-byte slice) using provided arguments.
// It returns whatever this contract returns. This function uses
2020-05-18 09:01:00 +00:00
// `System.Contract.Call` syscall.
func AppCall(scriptHash []byte, method string, args ...interface{}) interface{} {
return nil
}