Change order in miner sectors list

This commit is contained in:
Łukasz Magiera 2020-09-28 12:08:09 +02:00
parent cf71f034dc
commit a9d1ca4d83

View File

@ -205,15 +205,15 @@ var sectorsListCmd = &cli.Command{
_, inSSet := commitedIDs[s] _, inSSet := commitedIDs[s]
_, inASet := activeIDs[s] _, inASet := activeIDs[s]
_, _ = fmt.Fprintf(w, "%d: %s\tsSet: %s\tactive: %s\ttktH: %d\tseedH: %d\tdeals: %v\t toUpgrade:%t\n", _, _ = fmt.Fprintf(w, "%d: %s\tsSet: %s\tactive: %s\ttktH: %d\tseedH: %d\ttoUpgrade: %t\tdeals: %v\n",
s, s,
st.State, st.State,
yesno(inSSet), yesno(inSSet),
yesno(inASet), yesno(inASet),
st.Ticket.Epoch, st.Ticket.Epoch,
st.Seed.Epoch, st.Seed.Epoch,
st.Deals,
st.ToUpgrade, st.ToUpgrade,
st.Deals,
) )
} }
} }