mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
12 lines
252 B
Go
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)
|
|
}
|