From de9ee7b33422bdb0cdbc8510cc252f08ae56d489 Mon Sep 17 00:00:00 2001 From: vyzo Date: Wed, 11 May 2022 22:48:01 +0300 Subject: [PATCH] fix lint --- chain/actors/manifest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chain/actors/manifest.go b/chain/actors/manifest.go index efc406840..9ee159632 100644 --- a/chain/actors/manifest.go +++ b/chain/actors/manifest.go @@ -136,7 +136,7 @@ func FetchAndLoadBundle(ctx context.Context, basePath string, bs blockstore.Bloc if err != nil { return cid.Undef, xerrors.Errorf("error opening bundle for builtin-actors vresion %d: %w", av, err) } - defer f.Close() + defer f.Close() //nolint data, err := io.ReadAll(f) if err != nil {