提交 1954ef47 编写于 作者: O obscuren

Suicide is deferred to update

上级 fd1d0bbd
......@@ -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
......
......@@ -129,7 +129,7 @@ func FormatData(data string) []byte {
}
func RightPadBytes(slice []byte, l int) []byte {
if l <= len(slice) {
if l < len(slice) {
return slice
}
......@@ -140,7 +140,7 @@ func RightPadBytes(slice []byte, l int) []byte {
}
func LeftPadBytes(slice []byte, l int) []byte {
if l <= len(slice) {
if l < len(slice) {
return slice
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册