core: adjust System.Blockchain.GetContract interop

Part of #1055.

It should put on stack an array instead of interop interface.
This commit is contained in:
Anna Shaleva 2020-07-15 12:53:09 +03:00
parent 1a5fb01e61
commit d2ec0fed3d
4 changed files with 59 additions and 9 deletions

View file

@ -14,7 +14,7 @@ var syscalls = map[string]map[string]Syscall{
},
"blockchain": {
"GetBlock": {"System.Blockchain.GetBlock", true},
"GetContract": {"System.Blockchain.GetContract", false},
"GetContract": {"System.Blockchain.GetContract", true},
"GetHeight": {"System.Blockchain.GetHeight", false},
"GetTransaction": {"System.Blockchain.GetTransaction", true},
"GetTransactionFromBlock": {"System.Blockchain.GetTransactionFromBlock", false},