erigon-pulse/cmd/rpcdaemon/main.go

39 lines
855 B
Go
Raw Normal View History

package main
import (
"os"
"github.com/ledgerwatch/turbo-geth/cmd/utils"
"github.com/ledgerwatch/turbo-geth/cmd/rpcdaemon/cli"
"github.com/ledgerwatch/turbo-geth/cmd/rpcdaemon/commands"
"github.com/ledgerwatch/turbo-geth/log"
"github.com/spf13/cobra"
)
var (
gitCommit string
)
func main() {
cmd, cfg := cli.RootCommand()
cmd.RunE = func(cmd *cobra.Command, args []string) error {
2020-08-20 03:52:27 +00:00
db, backend, err := cli.OpenDB(*cfg)
if err != nil {
log.Error("Could not connect to remoteDb", "error", err)
return nil
}
2020-08-20 03:52:27 +00:00
var apiList = commands.APIList(db, backend, *cfg, nil)
return cli.StartRpcServer(cmd.Context(), *cfg, apiList)
}
// Hacky way to get these strings into the commands package
commands.SetGitStrings(gitCommit)
if err := cmd.ExecuteContext(utils.RootContext()); err != nil {
log.Error(err.Error())
os.Exit(1)
}
}