mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 11:32:20 +00:00
43 lines
1.0 KiB
Go
43 lines
1.0 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/ledgerwatch/erigon-lib/common"
|
||
|
"github.com/ledgerwatch/erigon/cmd/rpcdaemon22/cli"
|
||
|
"github.com/ledgerwatch/erigon/cmd/rpcdaemon22/commands"
|
||
|
"github.com/ledgerwatch/log/v3"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
cmd, cfg := cli.RootCommand()
|
||
|
rootCtx, rootCancel := common.RootContext()
|
||
|
cmd.RunE = func(cmd *cobra.Command, args []string) error {
|
||
|
ctx := cmd.Context()
|
||
|
logger := log.New()
|
||
|
db, borDb, backend, txPool, mining, starknet, stateCache, blockReader, ff, err := cli.RemoteServices(ctx, *cfg, logger, rootCancel)
|
||
|
if err != nil {
|
||
|
log.Error("Could not connect to DB", "err", err)
|
||
|
return nil
|
||
|
}
|
||
|
defer db.Close()
|
||
|
if borDb != nil {
|
||
|
defer borDb.Close()
|
||
|
}
|
||
|
|
||
|
apiList := commands.APIList(db, borDb, backend, txPool, mining, starknet, ff, stateCache, blockReader, *cfg)
|
||
|
if err := cli.StartRpcServer(ctx, *cfg, apiList); err != nil {
|
||
|
log.Error(err.Error())
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
if err := cmd.ExecuteContext(rootCtx); err != nil {
|
||
|
log.Error(err.Error())
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
}
|