aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/vm.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethchain/vm.go')
-rw-r--r--ethchain/vm.go16
1 files changed, 10 insertions, 6 deletions
diff --git a/ethchain/vm.go b/ethchain/vm.go
index c5ccb3420..0b8799a12 100644
--- a/ethchain/vm.go
+++ b/ethchain/vm.go
@@ -150,7 +150,7 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
case SSTORE:
var mult *big.Int
y, x := stack.Peekn()
- val := closure.GetMem(x)
+ val := closure.GetStorage(x)
if val.IsEmpty() && len(y.Bytes()) > 0 {
mult = ethutil.Big2
} else if !val.IsEmpty() && len(y.Bytes()) == 0 {
@@ -567,7 +567,7 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
case SLOAD:
require(1)
loc := stack.Pop()
- val := closure.GetMem(loc)
+ val := closure.GetStorage(loc)
stack.Push(val.BigInt())
@@ -713,10 +713,14 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
receiver := vm.state.GetAccount(stack.Pop().Bytes())
receiver.AddAmount(closure.object.Amount)
- trie := closure.object.state.trie
- trie.NewIterator().Each(func(key string, v *ethutil.Value) {
- trie.Delete(key)
- })
+ closure.object.MarkForDeletion()
+
+ /*
+ trie := closure.object.state.trie
+ trie.NewIterator().Each(func(key string, v *ethutil.Value) {
+ trie.Delete(key)
+ })
+ */
fallthrough
case STOP: // Stop the closure