diff --git a/cmd/lotus-shed/borked-miners.go b/cmd/lotus-shed/frozen-miners.go similarity index 93% rename from cmd/lotus-shed/borked-miners.go rename to cmd/lotus-shed/frozen-miners.go index ecb3aeae9d2..6b843f0d6ba 100644 --- a/cmd/lotus-shed/borked-miners.go +++ b/cmd/lotus-shed/frozen-miners.go @@ -10,9 +10,9 @@ import ( "golang.org/x/xerrors" ) -var borkedMinersCmd = &cli.Command{ - Name: "borked-miners", - Description: "information about 'borked' miner actors with late or frozen deadline crons", +var frozenMinersCmd = &cli.Command{ + Name: "frozen-miners", + Description: "information about miner actors with late or frozen deadline crons", Flags: []cli.Flag{ &cli.StringFlag{ Name: "tipset", diff --git a/cmd/lotus-shed/main.go b/cmd/lotus-shed/main.go index c8ce3ae04bd..488e2a6ae25 100644 --- a/cmd/lotus-shed/main.go +++ b/cmd/lotus-shed/main.go @@ -19,7 +19,7 @@ func main() { base32Cmd, base16Cmd, bitFieldCmd, - borkedMinersCmd, + frozenMinersCmd, keyinfoCmd, jwtCmd, noncefix,