Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions p2p/discover/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ func (p *PortalProtocolAPI) RoutingTableInfo() *RoutingTableInfo {
}

func (p *PortalProtocolAPI) AddEnr(enr string) (bool, error) {
p.portalProtocol.Log.Debug("serving AddEnr", "enr", enr)
n, err := enode.Parse(enode.ValidSchemes, enr)
if err != nil {
return false, err
Expand Down
2 changes: 1 addition & 1 deletion p2p/discover/portal_protocol.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ func (p *PortalProtocol) AddEnr(n *enode.Node) {
defer p.table.mutex.Unlock()
added := p.table.handleAddNode(addNodeOp{node: n, isInbound: true, forceSetLive: true})
if !added {
p.Log.Warn("add node failed", "id", n.ID())
p.Log.Warn("add node failed", "id", n.ID(), n.IPAddr())
return
}
id := n.ID().String()
Expand Down