From b91de50e65aeb51d2515f8cae9e46a6c9c31421b Mon Sep 17 00:00:00 2001 From: Evgeniy Stratonikov Date: Sat, 23 Oct 2021 16:16:03 +0300 Subject: [PATCH] compiler: remove `convert.To*` from the list of builtins Signed-off-by: Evgeniy Stratonikov --- pkg/compiler/analysis.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/compiler/analysis.go b/pkg/compiler/analysis.go index eb956cfe0..57f2db7ba 100644 --- a/pkg/compiler/analysis.go +++ b/pkg/compiler/analysis.go @@ -18,7 +18,6 @@ var ( // Custom builtin utility functions. customBuiltins = []string{ "FromAddress", - "ToBool", "ToBytes", "ToString", "ToInteger", } )