mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-05 18:42:19 +00:00
71112c1aae
* added peer discovery functionality * added discovery and connection to consensus layer bootnodes * lint Co-authored-by: giuliorebuffo <giuliorebuffo@system76-pc.localdomain>
12 lines
182 B
Go
12 lines
182 B
Go
package sentinel
|
|
|
|
import (
|
|
"github.com/ledgerwatch/erigon/p2p/discover"
|
|
)
|
|
|
|
type SentinelConfig struct {
|
|
DiscoverConfig discover.Config
|
|
IpAddr string
|
|
Port int
|
|
}
|