diff --git a/cmd/lotus-miner/actor.go b/cmd/lotus-miner/actor.go index bdceabd58..320c4e6de 100644 --- a/cmd/lotus-miner/actor.go +++ b/cmd/lotus-miner/actor.go @@ -1311,6 +1311,11 @@ var actorMovePartitionsCmd = &cli.Command{ }, }, Action: func(cctx *cli.Context) error { + if !cctx.Bool("really-do-it") { + fmt.Println("Pass --really-do-it to actually execute this action") + return nil + } + if cctx.Args().Present() { return fmt.Errorf("please use flags to provide arguments") }