aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/script.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethutil/script.go')
-rw-r--r--ethutil/script.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/ethutil/script.go b/ethutil/script.go
index 235498df2..af4ca6a38 100644
--- a/ethutil/script.go
+++ b/ethutil/script.go
@@ -22,7 +22,6 @@ func Compile(script string) (ret []byte, err error) {
} else {
compiler := mutan.NewCompiler(backend.NewEthereumBackend())
byteCode, errors := compiler.Compile(strings.NewReader(script))
- //byteCode, errors := mutan.Compile(strings.NewReader(script), false)
if len(errors) > 0 {
var errs string
for _, er := range errors {