wip
This commit is contained in:
4
vm/vm.go
4
vm/vm.go
@ -54,6 +54,8 @@ func (self *Vm) Run(me, caller ContextRef, code []byte, value, gas, price *big.I
|
||||
|
||||
err = fmt.Errorf("%v", r)
|
||||
|
||||
} else {
|
||||
fmt.Println(me.(*state.StateObject).Storage())
|
||||
}
|
||||
}()
|
||||
}
|
||||
@ -727,7 +729,7 @@ func (self *Vm) Run(me, caller ContextRef, code []byte, value, gas, price *big.I
|
||||
|
||||
self.Printf(" => (%x) %v", receiver.Address()[:4], balance)
|
||||
|
||||
receiver.AddAmount(balance)
|
||||
receiver.AddBalance(balance)
|
||||
statedb.Delete(context.Address())
|
||||
|
||||
fallthrough
|
||||
|
Reference in New Issue
Block a user