aboutsummaryrefslogtreecommitdiffstats
path: root/vm
diff options
context:
space:
mode:
Diffstat (limited to 'vm')
-rw-r--r--vm/vm.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/vm/vm.go b/vm/vm.go
index bce8088ef..165bb0329 100644
--- a/vm/vm.go
+++ b/vm/vm.go
@@ -30,10 +30,7 @@ type Vm struct {
func New(env Environment) *Vm {
lt := LogTyPretty
- if ethutil.Config.Diff {
- lt = LogTyDiff
- }
-
+ // lt = LogTyDiff
return &Vm{debug: true, env: env, logTy: lt, Recoverable: true}
}