Revision c37485ad2904a06e50beb63ddf44cae7e381fc2c authored by Jorropo on 08 August 2023, 10:55:08 UTC, committed by Jorropo on 08 August 2023, 12:01:19 UTC
(cherry picked from commit cfc142d85b1f0c4ec72ea322195cd7d526b5a1da)
1 parent bc0d1a4
Raw File
peering.go
package config

import "github.com/libp2p/go-libp2p/core/peer"

// Peering configures the peering service.
type Peering struct {
	// Peers lists the nodes to attempt to stay connected with.
	Peers []peer.AddrInfo
}
back to top