Skip to content

Commit

Permalink
Fix cast
Browse files Browse the repository at this point in the history
  • Loading branch information
aalan3 committed Jul 4, 2024
1 parent 83205c1 commit 42bf32b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dex/macros/models/_project/oneinch/LOP/oneinch_lop_macro.sql
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ select
)
) as remains
, date_trunc('minute', block_time) as minute
, date(date_trunc('month', block_time)) as block_month
, date(date_trunc('day', l.block_time) as date) as block_date,
, date(date_trunc('month', block_time) as date) as block_month
, date(date_trunc('day', block_time) as date) as block_date
from (
{{
add_tx_columns(
Expand Down

0 comments on commit 42bf32b

Please sign in to comment.