1bf713cb0a
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
20 lines
388 B
Go
20 lines
388 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/filecoin-project/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
|
|
},
|
|
}
|