aboutsummaryrefslogtreecommitdiffstats
path: root/core/execution.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/execution.go')
-rw-r--r--core/execution.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/execution.go b/core/execution.go
index 0b5e0558f..44dbd3ace 100644
--- a/core/execution.go
+++ b/core/execution.go
@@ -56,9 +56,7 @@ func (self *Execution) exec(code, contextAddr []byte, caller vm.ClosureRef) (ret
snapshot := env.State().Copy()
defer func() {
- if vm.IsOOGErr(err) {
- env.State().Set(snapshot)
- }
+ env.State().Set(snapshot)
chainlogger.Debugf("post state %x\n", env.State().Root())
}()