forked from TrueCloudLab/neoneo-go
compiler: add support for account syscalls
Turns out, they never functioned correctly.
This commit is contained in:
parent
83df376d17
commit
9c46e79745
1 changed files with 6 additions and 0 deletions
|
@ -1,6 +1,12 @@
|
||||||
package compiler
|
package compiler
|
||||||
|
|
||||||
var syscalls = map[string]map[string]string{
|
var syscalls = map[string]map[string]string{
|
||||||
|
"account": {
|
||||||
|
"GetBalance": "Neo.Account.GetBalance",
|
||||||
|
"GetScriptHash": "Neo.Account.GetScriptHash",
|
||||||
|
"GetVotes": "Neo.Account.GetVotes",
|
||||||
|
"IsStandard": "Neo.Account.IsStandard",
|
||||||
|
},
|
||||||
"storage": {
|
"storage": {
|
||||||
"GetContext": "Neo.Storage.GetContext",
|
"GetContext": "Neo.Storage.GetContext",
|
||||||
"Put": "Neo.Storage.Put",
|
"Put": "Neo.Storage.Put",
|
||||||
|
|
Loading…
Reference in a new issue