Skip to content

Commit

Permalink
fix linting after version update
Browse files Browse the repository at this point in the history
  • Loading branch information
frrist committed Nov 12, 2019
1 parent c6b2498 commit 1847d79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/go-filecoin/show.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ the filecoin block header.`,
for _, msg := range messages {
outStr += msg.String() + "\n"
}
_, err := fmt.Fprintf(w, outStr)
_, err := fmt.Fprint(w, outStr)
return err
}),
},
Expand Down Expand Up @@ -201,7 +201,7 @@ field of the filecoin block header.`,
for _, r := range receipts {
outStr += r.String() + "\n"
}
_, err := fmt.Fprintf(w, outStr)
_, err := fmt.Fprint(w, outStr)
return err
}),
},
Expand Down

0 comments on commit 1847d79

Please sign in to comment.