Skip to content

Commit

Permalink
revert accidental rename
Browse files Browse the repository at this point in the history
  • Loading branch information
BedrockSquirrel committed Sep 4, 2023
1 parent dab025a commit f82d7ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/common/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ func ParseBlockAndReceipts(block *L1Block, receipts *L1Receipts) (*BlockAndRecei
successfulTransactions: nil,
}

for i, receipt := range *receipts {
br.ReceiptsMap[i] = receipt
for idx, receipt := range *receipts {
br.ReceiptsMap[idx] = receipt
}

return &br, nil
Expand Down

0 comments on commit f82d7ec

Please sign in to comment.