Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ravenac95 committed Mar 26, 2024
1 parent ac8a99a commit 4e8c517
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ INNER JOIN logs AS l
ON t.transaction_hash = l.transaction_hash
WHERE
t.to_address IS null
{% if is_incremental() %}
{% if is_incremental() %}
AND TIMESTAMP_TRUNC(t.block_timestamp, DAY) >= (
SELECT * FROM max_block_timestamp
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ all_deployers AS (
SELECT
*,
'OPTIMISM' AS network
FROM {{ ref("stg_ethereum__deployers") }}
FROM {{ ref("stg_optimism__deployers") }}
UNION ALL
SELECT
*,
'ETHEREUM' AS network
'MAINNET' AS network
FROM {{ ref("stg_ethereum__deployers") }}
),

Expand Down

0 comments on commit 4e8c517

Please sign in to comment.