compiler/storage: add read-only related interops

This commit is contained in:
Roman Khimov 2020-05-18 18:13:45 +03:00
parent bfd8fe5960
commit 559e8a16da
2 changed files with 21 additions and 6 deletions

View file

@ -21,11 +21,13 @@ var syscalls = map[string]map[string]string{
"Value": "Neo.Enumerator.Value",
},
"storage": {
"GetContext": "Neo.Storage.GetContext",
"Put": "Neo.Storage.Put",
"Get": "Neo.Storage.Get",
"Delete": "Neo.Storage.Delete",
"Find": "Neo.Storage.Find",
"ConvertContextToReadOnly": "Neo.StorageContext.AsReadOnly",
"Delete": "Neo.Storage.Delete",
"Find": "Neo.Storage.Find",
"Get": "Neo.Storage.Get",
"GetContext": "Neo.Storage.GetContext",
"GetReadOnlyContext": "Neo.Storage.GetReadOnlyContext",
"Put": "Neo.Storage.Put",
},
"runtime": {
"GetTrigger": "Neo.Runtime.GetTrigger",