Merge pull request #2647 from filecoin-project/feat/better-seal-duration-ui

Feat/better seal duration ui
This commit is contained in:
Aayush Rajasekaran
2020-07-28 21:32:54 -04:00
committed by GitHub
3 changed files with 11 additions and 3 deletions
+7
View File
@@ -154,6 +154,13 @@ var infoCmd = &cli.Command{
fmt.Println()
sealdur, err := nodeApi.SectorGetExpectedSealDuration(ctx)
if err != nil {
return err
}
fmt.Printf("Expected Seal Duration: %s\n\n", sealdur)
fmt.Println("Sectors:")
err = sectorsInfo(ctx, nodeApi)
if err != nil {