Skip to content

Commit

Permalink
fix: get_block_receipts test (#989)
Browse files Browse the repository at this point in the history
## What ❔

Fix ordering

## Why ❔

for tests to pass

## Checklist

<!-- Check your PR fulfills the following items. -->
<!-- For draft PRs check the boxes as you complete them. -->

- [x] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [x] Tests for the changes have been added / updated.
- [x] Documentation comments have been added / updated.
- [x] Code has been formatted via `zk fmt` and `zk lint`.
- [x] Spellcheck has been run via `zk spellcheck`.
- [x] Linkcheck has been run via `zk linkcheck`.
  • Loading branch information
Artemka374 committed Feb 1, 2024
1 parent 9927d4b commit c301359
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/lib/dal/src/blocks_web3_dal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ impl BlocksWeb3Dal<'_, '_> {
ON l1_batches.number = miniblocks.l1_batch_number
LEFT JOIN transactions
ON transactions.miniblock_number = miniblocks.number
WHERE {}",
WHERE {}
ORDER BY transactions.index_in_block ASC",
transactions_sql,
web3_block_where_sql(block_id, 1)
);
Expand Down

0 comments on commit c301359

Please sign in to comment.