From df9abd9713e4986a498f528cce5d42299c615ff5 Mon Sep 17 00:00:00 2001 From: KIMSJ Date: Sat, 23 Feb 2019 00:40:00 +0900 Subject: [PATCH] fix: delete log --- translate/compiler.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/translate/compiler.go b/translate/compiler.go index 3d2274bb..a309b906 100644 --- a/translate/compiler.go +++ b/translate/compiler.go @@ -63,21 +63,18 @@ func CompileContract(c ast.Contract) (Asm, error) { return *asm, err } } - println("!!! : " + asm.String()) + // Compile Memory size with updated memory table. // And replace expected memory size with new memory size of the memory table. if err := compileMemSize(asm, memTracer); err != nil { return *asm, err } - println("!!! : " + asm.String()) - // Compile Function jumper with updated FuncMap. // And replace expected function jumper with new function jumper if err := compileFuncJmpr(c, asm, funcMap); err != nil { return *asm, err } - println("!!! : " + asm.String()) return *asm, nil }