Skip to content

Commit

Permalink
fix missing bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
billettc committed Oct 3, 2023
1 parent dde27f3 commit a6fe088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accountresolver/bundlerreader.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func (r *BundleReader) PushBlock(block *bstream.Block) error {
select {
case <-r.ctx.Done():
return nil
case r.blockData <- data[bstream.GetBlockWriterHeaderLen:]:
case r.blockData <- data:
return nil
}
}
Expand Down

0 comments on commit a6fe088

Please sign in to comment.