miner cli: Treat Activating sectors like Proving in sectors list

This commit is contained in:
Łukasz Magiera
2022-03-16 22:16:39 +01:00
parent 60ba133fc8
commit a431fdbdde
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -347,7 +347,7 @@ var sectorsListCmd = &cli.Command{
if cctx.Bool("unproven") {
for state := range sealing.ExistSectorStateList {
if state == sealing.Proving {
if state == sealing.Proving || state == sealing.Available {
continue
}
states = append(states, api.SectorState(state))