aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ethchain/state.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/ethchain/state.go b/ethchain/state.go
index 3d05ff582..7ddf7916f 100644
--- a/ethchain/state.go
+++ b/ethchain/state.go
@@ -93,10 +93,6 @@ func (self *State) ResetStateObject(stateObject *StateObject) {
func (self *State) UpdateStateObject(stateObject *StateObject) {
addr := stateObject.Address()
- if self.stateObjects[string(addr)] == nil {
- self.stateObjects[string(addr)] = stateObject
- }
-
ethutil.Config.Db.Put(ethcrypto.Sha3Bin(stateObject.Script()), stateObject.Script())
self.trie.Update(string(addr), string(stateObject.RlpEncode()))
@@ -131,7 +127,7 @@ func (self *State) GetOrNewStateObject(addr []byte) *StateObject {
}
func (self *State) NewStateObject(addr []byte) *StateObject {
- //statelogger.Infof("(+) %x\n", addr)
+ statelogger.Infof("(+) %x\n", addr)
stateObject := NewStateObject(addr)
self.stateObjects[string(addr)] = stateObject