make linter happy

This commit is contained in:
Anton Evangelatov
2021-08-12 22:06:57 -04:00
committed by Jennifer Wang
parent d92c6a2097
commit 60b612247d
+2 -2
View File
@@ -104,7 +104,7 @@ func infoCmdAct(cctx *cli.Context) error {
fmt.Println()
if subsystems.Has(api.SectorStorageSubsystem) {
err := handleMiningInfo(cctx, ctx, fullapi, nodeApi)
err := handleMiningInfo(ctx, cctx, fullapi, nodeApi)
if err != nil {
return err
}
@@ -120,7 +120,7 @@ func infoCmdAct(cctx *cli.Context) error {
return nil
}
func handleMiningInfo(cctx *cli.Context, ctx context.Context, fullapi v0api.FullNode, nodeApi api.StorageMiner) error {
func handleMiningInfo(ctx context.Context, cctx *cli.Context, fullapi v0api.FullNode, nodeApi api.StorageMiner) error {
maddr, err := getActorAddress(ctx, cctx)
if err != nil {
return err