From bb5e51e33b6c1a65a42bb5594f276075dc9c772b Mon Sep 17 00:00:00 2001 From: Fabio Barone Date: Mon, 11 Feb 2019 17:29:16 -0500 Subject: [PATCH] swarm/storage: fix linter problems --- swarm/storage/filestore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarm/storage/filestore.go b/swarm/storage/filestore.go index a522789fc7..ca9499104f 100644 --- a/swarm/storage/filestore.go +++ b/swarm/storage/filestore.go @@ -107,7 +107,7 @@ func (f *FileStore) GetAllReferences(ctx context.Context, data io.Reader, toEncr references: make([]Reference, 0), } // do the actual splitting anyway, no way around it - _, wait, err = PyramidSplit(ctx, data, putter, putter) + _, wait, err := PyramidSplit(ctx, data, putter, putter) if err != nil { return nil, err }