Merge pull request #4600 from filecoin-project/fix/sector-list-less-sracy

Make EarlyExpiration in sectors list less scary
This commit is contained in:
Łukasz Magiera 2020-10-26 16:17:20 +01:00 committed by GitHub
commit 382dcf9a37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")
@ -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))
}
}
}