package main import ( "net/http" "github.com/multiformats/go-multiaddr" "golang.org/x/xerrors" "gopkg.in/urfave/cli.v2" lcli "github.com/filecoin-project/go-lotus/cli" "github.com/filecoin-project/go-lotus/lib/jsonrpc" "github.com/filecoin-project/go-lotus/node" "github.com/filecoin-project/go-lotus/node/repo" ) var runCmd = &cli.Command{ Name: "run", Usage: "Start a lotus storage miner process", Flags: []cli.Flag{ &cli.StringFlag{ Name: "api", Value: "2345", }, }, Action: func(cctx *cli.Context) error { api, err := lcli.GetAPI(cctx) if err != nil { return err } ctx := lcli.ReqContext(cctx) v, err := api.Version(ctx) r, err := repo.NewFS(cctx.String(FlagStorageRepo)) if err != nil { return err } ok, err := r.Exists() if err != nil { return err } if !ok { return xerrors.Errorf("repo at '%s' is not initialized, run 'lotus-storage-miner init' to set it up", cctx.String(FlagStorageRepo)) } minerapi, err := node.New(ctx, node.StorageMiner(), node.Online(), node.Repo(r), node.Override(node.SetApiEndpointKey, func(lr repo.LockedRepo) error { apima, err := multiaddr.NewMultiaddr("/ip4/127.0.0.1/tcp/" + cctx.String("api")) if err != nil { return err } return lr.SetAPIEndpoint(apima) }), ) if err != nil { return err } // TODO: libp2p node log.Infof("Remote version %s", v) rpcServer := jsonrpc.NewServer() rpcServer.Register("Filecoin", minerapi) http.Handle("/rpc/v0", rpcServer) return http.ListenAndServe("127.0.0.1:"+cctx.String("api"), http.DefaultServeMux) }, }