2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-12 07:35:02 +00:00

12 lines
252 B
Go

package peers
import (
"github.com/ethereum/go-ethereum/p2p"
"github.com/status-im/status-go/signal"
)
// SendDiscoverySummary sends discovery.summary signal.
func SendDiscoverySummary(peers []*p2p.PeerInfo) {
signal.SendDiscoverySummary(peers)
}