aboutsummaryrefslogtreecommitdiffstats
path: root/core/execution.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-06-29 16:44:40 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-06-29 16:44:40 +0800
commitd55fc35df1ca4996048625421d4c475a437d273e (patch)
tree524f041d216fc9023fc0cfeaefd81631e13a1f35 /core/execution.go
parent67e9d3348679d87cca127de4da8eb4223c43aae2 (diff)
downloadgo-tangerine-d55fc35df1ca4996048625421d4c475a437d273e.tar.gz
go-tangerine-d55fc35df1ca4996048625421d4c475a437d273e.tar.zst
go-tangerine-d55fc35df1ca4996048625421d4c475a437d273e.zip
Revert "core: add voting and result tracking for the dao soft-fork"
This reverts commit c4de28938ff8c688c4444c8b3e8e28a52cbc62ff.
Diffstat (limited to 'core/execution.go')
-rw-r--r--core/execution.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/execution.go b/core/execution.go
index 7f4c64758..ec04f6140 100644
--- a/core/execution.go
+++ b/core/execution.go
@@ -149,9 +149,6 @@ func execDelegateCall(env vm.Environment, caller vm.ContractRef, originAddr, toA
return nil, common.Address{}, vm.DepthError
}
- if value.Cmp(common.Big0) > 0 {
- env.MarkCodeHash(env.Db().GetCodeHash(caller.Address()))
- }
snapshot := env.MakeSnapshot()
var to vm.Account