mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-13 11:36:37 +00:00
Changed log statements
This commit is contained in:
parent
93008e279d
commit
42d43147ca
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ func (self *State) GetOrNewStateObject(addr []byte) *StateObject {
|
||||||
func (self *State) NewStateObject(addr []byte) *StateObject {
|
func (self *State) NewStateObject(addr []byte) *StateObject {
|
||||||
addr = ethutil.Address(addr)
|
addr = ethutil.Address(addr)
|
||||||
|
|
||||||
statelogger.Infof("(+) %x\n", addr)
|
statelogger.Debugf("(+) %x\n", addr)
|
||||||
|
|
||||||
stateObject := NewStateObject(addr)
|
stateObject := NewStateObject(addr)
|
||||||
self.stateObjects[string(addr)] = stateObject
|
self.stateObjects[string(addr)] = stateObject
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue