From 9718891d793d75809af51cd0ccb8e0deeecc1903 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Sun, 17 May 2020 21:32:07 +0300 Subject: [PATCH] compiler: add support for attribute syscalls --- pkg/compiler/syscall.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/compiler/syscall.go b/pkg/compiler/syscall.go index 4ac9b1c37..40365cc99 100644 --- a/pkg/compiler/syscall.go +++ b/pkg/compiler/syscall.go @@ -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", },