Skip to content

Commit

Permalink
[Multi-Chain] Use blockchain parameter in service fee query (#441)
Browse files Browse the repository at this point in the history
This PR add the blockchain parameter to the service fee query.

The query was adapted to accept this parameter in
cowprotocol/dune-queries#84

Co-authored-by: Haris Angelidakis <[email protected]>
  • Loading branch information
fhenneke and harisang authored Dec 6, 2024
1 parent 0e6e804 commit 4acb308
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/fetch/dune.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,6 @@ def get_service_fee_status(self) -> list[DuneRecord]:
return self._get_query_results(
query=self._parameterized_query(
query_data=QUERIES["SERVICE_FEE_STATUS"],
params=[
QueryParameter.date_type("start_time", self.period.start),
QueryParameter.date_type("end_time", self.period.end),
],
params=self._network_and_period_params(),
)
)

0 comments on commit 4acb308

Please sign in to comment.