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

Commit

Permalink
black fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fhenneke committed Feb 8, 2024
1 parent e1df3bf commit 3cb1a2c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/fetch/orderbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,12 @@ def get_batch_rewards(cls, block_range: BlockRange) -> DataFrame:
open_query("orderbook/batch_rewards.sql")
.replace("{{start_block}}", str(block_range.block_from))
.replace("{{end_block}}", str(block_range.block_to))
.replace("{{EPSILON_LOWER}}", "10000000000000000") # lower ETH cap for payment (in WEI)
.replace("{{EPSILON_UPPER}}", "12000000000000000") # upper ETH cap for payment (in WEI)
.replace(
"{{EPSILON_LOWER}}", "10000000000000000"
) # lower ETH cap for payment (in WEI)
.replace(
"{{EPSILON_UPPER}}", "12000000000000000"
) # upper ETH cap for payment (in WEI)
)
data_types = {
# According to this: https://stackoverflow.com/a/11548224
Expand Down

0 comments on commit 3cb1a2c

Please sign in to comment.