compiler: add support for account syscalls

Turns out, they never functioned correctly.
This commit is contained in:
Roman Khimov 2020-05-17 18:50:37 +03:00
parent 7c1a54b725
commit 41337732be

View file

@ -1,6 +1,12 @@
package compiler
var syscalls = map[string]map[string]string{
"account": {
"GetBalance": "Neo.Account.GetBalance",
"GetScriptHash": "Neo.Account.GetScriptHash",
"GetVotes": "Neo.Account.GetVotes",
"IsStandard": "Neo.Account.IsStandard",
},
"crypto": {
"ECDsaVerify": "Neo.Crypto.ECDsaVerify",
},