Skip to content

Commit

Permalink
Fix joins for eth_mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-snx committed Aug 13, 2024
1 parent c8fffe9 commit fc962f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ SELECT
{{ convert_wei('base.collateral_value') }} AS collateral_value
FROM
base
JOIN {{ ref('blocks_eth_mainnet') }} AS blocks
JOIN {{ source('raw_eth_mainnet', 'blocks_parquet') }} AS blocks
ON base.block_number = blocks.block_number
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ SELECT
{{ convert_wei('base.debt') }} AS debt
FROM
base
JOIN {{ ref('blocks_eth_mainnet') }} AS blocks
JOIN {{ source('raw_eth_mainnet', 'blocks_parquet') }} AS blocks
ON base.block_number = blocks.block_number

0 comments on commit fc962f4

Please sign in to comment.