aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/state_object.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-07 19:59:09 +0800
committerobscuren <geffobscura@gmail.com>2014-07-07 19:59:09 +0800
commitb01cb2406f94745277fe05dfa74c6e5d42af1c6a (patch)
treee2c2ef277dfe92dc7710501234c6dec807ea6842 /ethchain/state_object.go
parent42bb3d8aaeb4753ac491c31c746b065dbcbb3781 (diff)
downloadgo-tangerine-b01cb2406f94745277fe05dfa74c6e5d42af1c6a.tar.gz
go-tangerine-b01cb2406f94745277fe05dfa74c6e5d42af1c6a.tar.zst
go-tangerine-b01cb2406f94745277fe05dfa74c6e5d42af1c6a.zip
Fixed state reset case
Diffstat (limited to 'ethchain/state_object.go')
-rw-r--r--ethchain/state_object.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ethchain/state_object.go b/ethchain/state_object.go
index 5a43de35c..2c7f36e65 100644
--- a/ethchain/state_object.go
+++ b/ethchain/state_object.go
@@ -84,6 +84,7 @@ func NewStateObjectFromBytes(address, data []byte) *StateObject {
func (self *StateObject) MarkForDeletion() {
self.remove = true
+ statelogger.Infof("%x: #%d %v (deletion)\n", self.Address(), self.Nonce, self.Amount)
}
func (c *StateObject) GetAddr(addr []byte) *ethutil.Value {