aboutsummaryrefslogtreecommitdiffstats
path: root/light/state.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-03-04 00:53:30 +0800
committerGitHub <noreply@github.com>2017-03-04 00:53:30 +0800
commit07c216d603d7b366c177295761280acc706a9382 (patch)
tree8e46ff5081d126f6e99d5849cb7dad7f64aefdbd /light/state.go
parent1a00e39539f2bd7f59430062faa42bbc28cb89d2 (diff)
parente7030c4bf59e8e148822c50ae1a5896c604c38c1 (diff)
downloaddexon-07c216d603d7b366c177295761280acc706a9382.tar
dexon-07c216d603d7b366c177295761280acc706a9382.tar.gz
dexon-07c216d603d7b366c177295761280acc706a9382.tar.bz2
dexon-07c216d603d7b366c177295761280acc706a9382.tar.lz
dexon-07c216d603d7b366c177295761280acc706a9382.tar.xz
dexon-07c216d603d7b366c177295761280acc706a9382.tar.zst
dexon-07c216d603d7b366c177295761280acc706a9382.zip
Merge pull request #3739 from karalabe/logger-updates-4
all: update light logs (and a few others) to the new model
Diffstat (limited to 'light/state.go')
-rw-r--r--light/state.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/light/state.go b/light/state.go
index 1fb583c1d..d3e047ef4 100644
--- a/light/state.go
+++ b/light/state.go
@@ -17,12 +17,10 @@
package light
import (
- "fmt"
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
- "github.com/ethereum/go-ethereum/log"
"golang.org/x/net/context"
)
@@ -239,10 +237,6 @@ func (self *LightState) GetOrNewStateObject(ctx context.Context, addr common.Add
// newStateObject creates a state object whether it exists in the state or not
func (self *LightState) newStateObject(addr common.Address) *StateObject {
- log.Debug("", "msg", log.Lazy{Fn: func() string {
- return fmt.Sprintf("(+) %x\n", addr)
- }})
-
stateObject := NewStateObject(addr, self.odr)
self.stateObjects[addr.Str()] = stateObject