p2p: remove "cap" enr entry (#19800)

This entry was an experiment, but we're moving on to the
entry-per-protocol instead.
pull/19807/head
Felix Lange 5 years ago committed by Péter Szilágyi
parent 22060611fb
commit cc0f0e27a6
  1. 2
      p2p/protocol.go
  2. 1
      p2p/server.go

@ -79,5 +79,3 @@ func (cs capsByNameAndVersion) Swap(i, j int) { cs[i], cs[j] = cs[j], cs[i] }
func (cs capsByNameAndVersion) Less(i, j int) bool {
return cs[i].Name < cs[j].Name || (cs[i].Name == cs[j].Name && cs[i].Version < cs[j].Version)
}
func (capsByNameAndVersion) ENRKey() string { return "cap" }

@ -488,7 +488,6 @@ func (srv *Server) setupLocalNode() error {
srv.nodedb = db
srv.localnode = enode.NewLocalNode(db, srv.PrivateKey)
srv.localnode.SetFallbackIP(net.IP{127, 0, 0, 1})
srv.localnode.Set(capsByNameAndVersion(srv.ourHandshake.Caps))
// TODO: check conflicts
for _, p := range srv.Protocols {
for _, e := range p.Attributes {

Loading…
Cancel
Save