From 4e21e43e7227f50bcb89682a2d494c7df01c1915 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 18 May 2020 13:20:49 +0300 Subject: [PATCH] compiler: add support for enumerator interop package --- pkg/compiler/syscall.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/compiler/syscall.go b/pkg/compiler/syscall.go index 8eef83436..8f28a4d21 100644 --- a/pkg/compiler/syscall.go +++ b/pkg/compiler/syscall.go @@ -14,6 +14,12 @@ var syscalls = map[string]map[string]string{ "crypto": { "ECDsaVerify": "Neo.Crypto.ECDsaVerify", }, + "enumerator": { + "Concat": "Neo.Enumerator.Concat", + "Create": "Neo.Enumerator.Create", + "Next": "Neo.Enumerator.Next", + "Value": "Neo.Enumerator.Value", + }, "storage": { "GetContext": "Neo.Storage.GetContext", "Put": "Neo.Storage.Put",