Make EarlyExpiration in sectors list less scary

This commit is contained in:
Łukasz Magiera 2020-10-26 15:32:52 +01:00
parent 1afd3a41cb
commit 8923524f6a

View File

@ -219,7 +219,7 @@ var sectorsListCmd = &cli.Command{
tablewriter.Col("Deals"), tablewriter.Col("Deals"),
tablewriter.Col("DealWeight"), tablewriter.Col("DealWeight"),
tablewriter.NewLineCol("Error"), tablewriter.NewLineCol("Error"),
tablewriter.NewLineCol("EarlyExpiration")) tablewriter.NewLineCol("RecoveryTimeout"))
fast := cctx.Bool("fast") fast := cctx.Bool("fast")
@ -281,7 +281,7 @@ var sectorsListCmd = &cli.Command{
} }
if st.Early > 0 { if st.Early > 0 {
m["EarlyExpiration"] = color.YellowString(lcli.EpochTime(head.Height(), st.Early)) m["RecoveryTimeout"] = color.YellowString(lcli.EpochTime(head.Height(), st.Early))
} }
} }
} }