aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-03-03 17:41:52 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-03-03 17:41:52 +0800
commite7030c4bf59e8e148822c50ae1a5896c604c38c1 (patch)
tree4403290e84761608e8437d23ecef4d934406dd46 /eth
parentfaf713632c307e3fd77a492481846b858ad991f9 (diff)
downloadgo-tangerine-e7030c4bf59e8e148822c50ae1a5896c604c38c1.tar
go-tangerine-e7030c4bf59e8e148822c50ae1a5896c604c38c1.tar.gz
go-tangerine-e7030c4bf59e8e148822c50ae1a5896c604c38c1.tar.bz2
go-tangerine-e7030c4bf59e8e148822c50ae1a5896c604c38c1.tar.lz
go-tangerine-e7030c4bf59e8e148822c50ae1a5896c604c38c1.tar.xz
go-tangerine-e7030c4bf59e8e148822c50ae1a5896c604c38c1.tar.zst
go-tangerine-e7030c4bf59e8e148822c50ae1a5896c604c38c1.zip
all: update light logs (and a few others) to the new model
Diffstat (limited to 'eth')
-rw-r--r--eth/handler.go2
-rw-r--r--eth/peer.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/eth/handler.go b/eth/handler.go
index a7f4be0b6..ade8f7719 100644
--- a/eth/handler.go
+++ b/eth/handler.go
@@ -308,7 +308,7 @@ func (pm *ProtocolManager) handle(p *peer) error {
// main loop. handle incoming messages.
for {
if err := pm.handleMsg(p); err != nil {
- p.Log().Debug("Message handling failed", "err", err)
+ p.Log().Debug("Ethereum message handling failed", "err", err)
return err
}
}
diff --git a/eth/peer.go b/eth/peer.go
index 443463b8c..6884fee8e 100644
--- a/eth/peer.go
+++ b/eth/peer.go
@@ -187,7 +187,7 @@ func (p *peer) SendReceiptsRLP(receipts []rlp.RawValue) error {
return p2p.Send(p.rw, ReceiptsMsg, receipts)
}
-// RequestHeaders is a wrapper around the header query functions to fetch a
+// RequestOneHeader is a wrapper around the header query functions to fetch a
// single header. It is used solely by the fetcher.
func (p *peer) RequestOneHeader(hash common.Hash) error {
p.Log().Debug("Fetching single header", "hash", hash)