add param fetch command
This commit is contained in:
parent
2525ba40d6
commit
640437e13a
@ -114,6 +114,7 @@ var Commands = []*cli.Command{
|
|||||||
chainCmd,
|
chainCmd,
|
||||||
clientCmd,
|
clientCmd,
|
||||||
createMinerCmd,
|
createMinerCmd,
|
||||||
|
fetchParamCmd,
|
||||||
mpoolCmd,
|
mpoolCmd,
|
||||||
netCmd,
|
netCmd,
|
||||||
paychCmd,
|
paychCmd,
|
||||||
|
19
cli/params.go
Normal file
19
cli/params.go
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
package cli
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/filecoin-project/go-lotus/build"
|
||||||
|
"golang.org/x/xerrors"
|
||||||
|
"gopkg.in/urfave/cli.v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
var fetchParamCmd = &cli.Command{
|
||||||
|
Name: "fetch-params",
|
||||||
|
Usage: "Fetch proving parameters",
|
||||||
|
Action: func(cctx *cli.Context) error {
|
||||||
|
if err := build.GetParams(true); err != nil {
|
||||||
|
return xerrors.Errorf("fetching proof parameters: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user