Skip to content

Commit

Permalink
[Hotfix] Fix accounting period length (#439)
Browse files Browse the repository at this point in the history
In #437, an unintentional change to the accounting period length was
made. This PR changes the length of the accounting period back to its
default length (of 7 days).
  • Loading branch information
fhenneke authored Dec 3, 2024
1 parent 8149b10 commit 3f60969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fetch/transfer_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def main() -> None:

config = AccountingConfig.from_network(Network(os.environ["NETWORK"]))

accounting_period = AccountingPeriod(args.start, length_days=1)
accounting_period = AccountingPeriod(args.start)

orderbook = MultiInstanceDBFetcher(
[config.orderbook_config.prod_db_url, config.orderbook_config.barn_db_url]
Expand Down

0 comments on commit 3f60969

Please sign in to comment.