Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
whalehunting committed Dec 1, 2024
1 parent 1f00bae commit 7084d15
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ with
),
fees as (
select sum(value) / 1e18 as fee_token_amount, tx_hash
from {{ source({{ blockchain }}, 'traces') }}
from {{ source('{{ blockchain }}', 'traces') }}
where
(
to = {{ treasury_fee_wallet_1 }}
Expand All @@ -52,7 +52,7 @@ with
),
oneinch_aggregator_trades as (
select call_block_time as block_time, call_tx_hash as tx_hash
from {{ source('oneinch_' + {{ blockchain }}, 'AggregationRouterV6_call_swap') }}
from {{ source('oneinch_' + '{{ blockchain }}', 'AggregationRouterV6_call_swap') }}
where
(
varbinary_position(data, {{ aggregator_fee_wallet_1 }}) > 0
Expand Down

0 comments on commit 7084d15

Please sign in to comment.