2
0
mirror of https://github.com/status-im/status-go.git synced 2025-02-16 16:56:53 +00:00
2020-01-06 10:17:23 +01:00

13 lines
253 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)
}