Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cody-wang-cb committed May 1, 2024
1 parent 7dd27e9 commit 8b376d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-node/rollup/derive/channel.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func BatchReader(r io.Reader) (func() (*BatchData, error), error) {
// remove the first byte by reading it
_, err := r.Read(make([]byte, 1))
if err != nil {
return nil ,err
return nil, err
}
reader = func(r io.Reader) (io.Reader, error) {
return brotli.NewReader(r), nil
Expand Down

0 comments on commit 8b376d0

Please sign in to comment.