Skip to content

Commit

Permalink
lotus-miner: More sector-related data in info all
Browse files Browse the repository at this point in the history
  • Loading branch information
magik6k authored and arajasek committed Feb 17, 2022
1 parent f1f4be3 commit a48f542
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cmd/lotus-miner/info_all.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ var infoAllCmd = &cli.Command{
fmt.Println("ERROR: ", err)
}

fmt.Println("\n#: Storage Locks")
if err := storageLocks.Action(cctx); err != nil {
fmt.Println("ERROR: ", err)
}

fmt.Println("\n#: Sched Diag")
if err := sealingSchedDiagCmd.Action(cctx); err != nil {
fmt.Println("ERROR: ", err)
Expand Down Expand Up @@ -192,6 +197,11 @@ var infoAllCmd = &cli.Command{
fmt.Println("ERROR: ", err)
}

fmt.Println("\n#: Storage Sector List")
if err := storageListSectorsCmd.Action(cctx); err != nil {
fmt.Println("ERROR: ", err)
}

fmt.Println("\n#: Expired Sectors")
if err := sectorsExpiredCmd.Action(cctx); err != nil {
fmt.Println("ERROR: ", err)
Expand Down

0 comments on commit a48f542

Please sign in to comment.