Skip to content

Commit

Permalink
Merge pull request #4600 from filecoin-project/fix/sector-list-less-s…
Browse files Browse the repository at this point in the history
…racy

Make EarlyExpiration in sectors list less scary
  • Loading branch information
magik6k authored Oct 26, 2020
2 parents 1afd3a4 + 8923524 commit 382dcf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/lotus-storage-miner/sectors.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ var sectorsListCmd = &cli.Command{
tablewriter.Col("Deals"),
tablewriter.Col("DealWeight"),
tablewriter.NewLineCol("Error"),
tablewriter.NewLineCol("EarlyExpiration"))
tablewriter.NewLineCol("RecoveryTimeout"))

fast := cctx.Bool("fast")

Expand Down Expand Up @@ -281,7 +281,7 @@ var sectorsListCmd = &cli.Command{
}

if st.Early > 0 {
m["EarlyExpiration"] = color.YellowString(lcli.EpochTime(head.Height(), st.Early))
m["RecoveryTimeout"] = color.YellowString(lcli.EpochTime(head.Height(), st.Early))
}
}
}
Expand Down

0 comments on commit 382dcf9

Please sign in to comment.