mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-29 07:07:16 +00:00
6d6e511b0f
Co-authored-by: giuliorebuffo <giuliorebuffo@system76-pc.localdomain>
65 lines
1.8 KiB
Go
65 lines
1.8 KiB
Go
/*
|
|
Copyright 2022 Erigon-Lightclient contributors
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/ledgerwatch/erigon/cmd/lightclient/clparams"
|
|
"github.com/ledgerwatch/erigon/cmd/lightclient/sentinel"
|
|
"github.com/ledgerwatch/log/v3"
|
|
)
|
|
|
|
var (
|
|
defaultIpAddr = "127.0.0.1" // Localhost
|
|
defaultPort = 8080
|
|
defaultTcpPort = uint(9000)
|
|
)
|
|
|
|
func main() {
|
|
log.Root().SetHandler(log.LvlFilterHandler(log.LvlInfo, log.StderrHandler))
|
|
discCfg, genesisCfg, networkCfg, err := clparams.GetConfigsByNetwork(clparams.MainnetNetwork)
|
|
if err != nil {
|
|
log.Error("error", "err", err)
|
|
return
|
|
}
|
|
sent, err := sentinel.New(context.Background(), sentinel.SentinelConfig{
|
|
IpAddr: defaultIpAddr,
|
|
Port: defaultPort,
|
|
TCPPort: defaultTcpPort,
|
|
DiscoverConfig: *discCfg,
|
|
GenesisConfig: genesisCfg,
|
|
NetworkConfig: networkCfg,
|
|
})
|
|
if err != nil {
|
|
log.Error("error", "err", err)
|
|
return
|
|
}
|
|
if err := sent.Start(); err != nil {
|
|
log.Error("failed to start sentinel", "err", err)
|
|
return
|
|
}
|
|
log.Info("Sentinel started", "enr", sent.String())
|
|
logInterval := time.NewTicker(5 * time.Second)
|
|
for {
|
|
select {
|
|
case <-logInterval.C:
|
|
log.Info("[Lighclient] Networking Report", "peers", sent.GetPeersCount())
|
|
default:
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|
|
}
|
|
}
|