compiler: add support for attribute syscalls

This commit is contained in:
Roman Khimov 2020-05-17 21:32:07 +03:00
parent 60bea7e224
commit 9718891d79

View file

@ -7,6 +7,10 @@ var syscalls = map[string]map[string]string{
"GetVotes": "Neo.Account.GetVotes",
"IsStandard": "Neo.Account.IsStandard",
},
"attribute": {
"GetUsage": "Neo.Attribute.GetUsage",
"GetData": "Neo.Attribute.GetData",
},
"crypto": {
"ECDsaVerify": "Neo.Crypto.ECDsaVerify",
},