2020-05-18 09:01:00 +00:00
|
|
|
/*
|
2020-06-16 08:54:48 +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.
|
|
|
|
*/
|
2018-08-22 07:51:35 +00:00
|
|
|
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.
|
2020-07-24 07:46:21 +00:00
|
|
|
// It returns whatever this contract returns. This function uses
|
2020-05-18 09:01:00 +00:00
|
|
|
// `System.Contract.Call` syscall.
|
2020-07-23 15:13:02 +00:00
|
|
|
func AppCall(scriptHash []byte, method string, args ...interface{}) interface{} {
|
2020-01-27 07:59:57 +00:00
|
|
|
return nil
|
|
|
|
}
|