Skip to content

Commit

Permalink
remove some spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed Feb 8, 2024
1 parent 33425f7 commit 1629801
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sql/orderbook/batch_rewards.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ WITH observed_settlements AS (
AND s.log_index = so.log_index
JOIN settlement_scores ss ON s.auction_id = ss.auction_id
WHERE
ss.block_deadline > { { start_block } }
AND ss.block_deadline <= { { end_block } }
ss.block_deadline > {{start_block}}
AND ss.block_deadline <= {{end_block}}
),
auction_participation as (
SELECT
Expand All @@ -30,8 +30,8 @@ auction_participation as (
auction_participants
JOIN settlement_scores ss ON auction_participants.auction_id = ss.auction_id
WHERE
block_deadline > { { start_block } }
AND block_deadline <= { { end_block } }
block_deadline > {{start_block}}
AND block_deadline <= {{end_block}}
GROUP BY
ss.auction_id
),
Expand Down

0 comments on commit 1629801

Please sign in to comment.