compiler: fix binary.* syscalls compilation, fix #1152

They were attributed to a wrong package.
This commit is contained in:
Roman Khimov 2020-07-07 21:57:51 +03:00
parent ebe37d1a46
commit 694963d607

View file

@ -1,6 +1,10 @@
package compiler
var syscalls = map[string]map[string]string{
"binary": {
"Serialize": "System.Binary.Serialize",
"Deserialize": "System.Binary.Deserialize",
},
"crypto": {
"ECDsaVerify": "Neo.Crypto.ECDsaVerify",
},
@ -37,8 +41,6 @@ var syscalls = map[string]map[string]string{
"Notify": "System.Runtime.Notify",
"Log": "System.Runtime.Log",
"GetTime": "System.Runtime.GetTime",
"Serialize": "System.Binary.Serialize",
"Deserialize": "System.Binary.Deserialize",
},
"blockchain": {
"GetBlock": "System.Blockchain.GetBlock",