mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 04:57:17 +00:00
74847d77e6
* turbo-geth to erigon * tg, turbo to erigon
67 lines
1.8 KiB
Go
67 lines
1.8 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"os"
|
|
"unsafe"
|
|
|
|
"github.com/ledgerwatch/erigon/cmd/utils"
|
|
"github.com/ledgerwatch/erigon/eth/stagedsync"
|
|
"github.com/ledgerwatch/erigon/log"
|
|
erigoncli "github.com/ledgerwatch/erigon/turbo/cli"
|
|
"github.com/ledgerwatch/erigon/turbo/node"
|
|
"github.com/ledgerwatch/erigon/turbo/silkworm"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var (
|
|
// gitCommit is injected through the build flags (see Makefile)
|
|
gitCommit string
|
|
gitBranch string
|
|
)
|
|
|
|
func main() {
|
|
// creating a erigon-api app with all defaults
|
|
app := erigoncli.MakeApp(runErigon, erigoncli.DefaultFlags)
|
|
if err := app.Run(os.Args); err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
func runErigon(cliCtx *cli.Context) {
|
|
silkwormPath := cliCtx.String(erigoncli.SilkwormFlag.Name)
|
|
var silkwormExecutionFunc unsafe.Pointer
|
|
if silkwormPath != "" {
|
|
var err error
|
|
silkwormExecutionFunc, err = silkworm.LoadExecutionFunctionPointer(silkwormPath)
|
|
if err != nil {
|
|
panic(fmt.Errorf("failed to load Silkworm dynamic library: %v", err))
|
|
}
|
|
}
|
|
|
|
// creating staged sync with all default parameters
|
|
sync := stagedsync.New(
|
|
stagedsync.DefaultStages(),
|
|
stagedsync.DefaultUnwindOrder(),
|
|
stagedsync.OptionalParameters{SilkwormExecutionFunc: silkwormExecutionFunc},
|
|
)
|
|
|
|
ctx, _ := utils.RootContext()
|
|
|
|
// initializing the node and providing the current git commit there
|
|
log.Info("Build info", "git_branch", gitBranch, "git_commit", gitCommit)
|
|
eri := node.New(cliCtx, sync, node.Params{GitCommit: gitCommit, GitBranch: gitBranch})
|
|
eri.SetP2PListenFunc(func(network, addr string) (net.Listener, error) {
|
|
var lc net.ListenConfig
|
|
return lc.Listen(ctx, network, addr)
|
|
})
|
|
// running the node
|
|
err := eri.Serve()
|
|
|
|
if err != nil {
|
|
log.Error("error while serving a Erigon node", "err", err)
|
|
}
|
|
}
|