Skip to content

Commit

Permalink
fix: delete log
Browse files Browse the repository at this point in the history
  • Loading branch information
AgwaB committed Feb 22, 2019
1 parent 7346178 commit df9abd9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions translate/compiler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit df9abd9

Please sign in to comment.