Skip to content

Commit

Permalink
fix(eventindexer): include end block in indexRawBlockData (#17583)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey authored Jun 14, 2024
1 parent 1078e96 commit 1754b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eventindexer/indexer/index_raw_block_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func (i *Indexer) indexRawBlockData(

// only index block/transaction data on L2
if i.layer == Layer2 {
for j := start; j < end; j++ {
for j := start; j <= end; j++ {
id := j

wg.Go(func() error {
Expand Down

0 comments on commit 1754b16

Please sign in to comment.