mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 11:32:20 +00:00
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
|
||
|
}
|