lotus-miner info should show deals info without admin permission

This commit is contained in:
Marcel Telka 2023-02-21 11:10:38 +01:00
parent 392d3d4b8a
commit 7f33db90d8

View File

@ -347,14 +347,12 @@ func handleMiningInfo(ctx context.Context, cctx *cli.Context, fullapi v1api.Full
} }
} }
{ fmt.Println()
fmt.Println()
ws, err := nodeApi.WorkerStats(ctx)
if err != nil {
return xerrors.Errorf("getting worker stats: %w", err)
}
ws, err := nodeApi.WorkerStats(ctx)
if err != nil {
fmt.Printf("ERROR: getting worker stats: %s\n", err)
} else {
workersByType := map[string]int{ workersByType := map[string]int{
sealtasks.WorkerSealing: 0, sealtasks.WorkerSealing: 0,
sealtasks.WorkerWindowPoSt: 0, sealtasks.WorkerWindowPoSt: 0,