Skip to content

Commit

Permalink
add looser block deadline
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed Apr 5, 2024
1 parent b61a891 commit dda14f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sql/orderbook/barn_order_rewards.sql
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ order_surplus AS (
ON o.uid = oq.order_uid
WHERE
ss.block_deadline >= {{start_block}}
AND ss.block_deadline <= {{end_block}}
AND ss.block_deadline <= {{end_block}} + 100
),
order_protocol_fee AS (
SELECT
Expand Down
2 changes: 1 addition & 1 deletion src/sql/orderbook/prod_order_rewards.sql
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ order_surplus AS (
ON o.uid = oq.order_uid
WHERE
ss.block_deadline >= {{start_block}}
AND ss.block_deadline <= {{end_block}}
AND ss.block_deadline <= {{end_block}} + 100
),
order_protocol_fee AS (
SELECT
Expand Down

0 comments on commit dda14f1

Please sign in to comment.