diff --git a/cmd/lotus-storage-miner/sectors.go b/cmd/lotus-storage-miner/sectors.go index 0c3ef58d6a0..967e2d413b7 100644 --- a/cmd/lotus-storage-miner/sectors.go +++ b/cmd/lotus-storage-miner/sectors.go @@ -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)) } } }