Print msg cid in terminate flush

This commit is contained in:
Łukasz Magiera 2021-01-14 16:47:30 +01:00
parent 4a114150f0
commit 9632a3836a

View File

@ -454,6 +454,8 @@ var sectorsTerminateFlushCmd = &cli.Command{
return xerrors.New("no sectors were queued for termination")
}
fmt.Println(mcid)
return nil
},
}
@ -475,7 +477,7 @@ var sectorsTerminatePendingCmd = &cli.Command{
}
for _, id := range pending {
fmt.Println(id)
fmt.Println(id.Number)
}
return nil