compiler: implement missing System.Contract.* interops

Support System.Contract.IsStandard/CreateStandardAccount syscall.
This commit is contained in:
Evgenii Stratonikov 2020-06-17 11:38:32 +03:00
parent 3762ebdd08
commit 61cae8d8b1
2 changed files with 15 additions and 0 deletions

View file

@ -52,6 +52,9 @@ var syscalls = map[string]map[string]string{
"Create": "System.Contract.Create",
"Destroy": "System.Contract.Destroy",
"Update": "System.Contract.Update",
"IsStandard": "System.Contract.IsStandard",
"CreateStandardAccount": "System.Contract.CreateStandardAccount",
},
"iterator": {
"Concat": "System.Iterator.Concat",