Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Trivial] Fix typo #73

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ failed_settlements as (
name as solver_name
from
ethereum.transactions
inner join prices.usd as p on p.minute = date_trun('minute', block_time) --noqa: LT02
inner join prices.usd as p on p.minute = date_trunc('minute', block_time) --noqa: LT02
and blockchain = 'ethereum'
and contract_address = 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
inner join cow_protocol_ethereum.solvers on "from" = address --noqa: LT02
Expand Down