Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed Nov 23, 2024
1 parent 78194c2 commit 00d80ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fetch/orderbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,10 @@ def run_batch_data_sql(cls, block_range: BlockRange) -> DataFrame:
.replace("{{start_block}}", str(block_range.block_from))
.replace("{{end_block}}", str(block_range.block_to))
.replace(
"{{EPSILON_LOWER}}", "10000000000000000"
"{{EPSILON_LOWER}}", epsilon_lower
) # lower ETH cap for payment (in WEI)
.replace(
"{{EPSILON_UPPER}}", "12000000000000000"
"{{EPSILON_UPPER}}", epsilon_upper
) # upper ETH cap for payment (in WEI)
.replace("{{env}}", "barn")
)
Expand Down

0 comments on commit 00d80ee

Please sign in to comment.