compiler: implement engine.AppCall interop

This commit is contained in:
Evgenii Stratonikov 2020-01-27 10:59:57 +03:00
parent ead0b8ff94
commit 330db36168
4 changed files with 129 additions and 2 deletions

View file

@ -27,3 +27,8 @@ func GetCallingScriptHash() []byte {
func GetEntryScriptHash() []byte {
return nil
}
// AppCall executes script with specified hash using provided arguments.
func AppCall(scriptHash []byte, args []interface{}) interface{} {
return nil
}