mirror of
https://github.com/FlipsideCrypto/movement-models.git
synced 2026-02-06 11:06:43 +00:00
added block exclusions from mainnet beta as they didn't resolve after upstream FR. versioning related
This commit is contained in:
parent
3c0e18b477
commit
301dcf560b
2
.github/workflows/dbt_run_observability.yml
vendored
2
.github/workflows/dbt_run_observability.yml
vendored
@ -42,4 +42,4 @@ jobs:
|
||||
dbt deps
|
||||
- name: Run DBT Jobs
|
||||
run: |
|
||||
dbt build -s "movement_models,tag:observability"
|
||||
dbt run -s tag:observability
|
||||
@ -59,7 +59,7 @@ AND (
|
||||
base_blocks AS (
|
||||
SELECT
|
||||
block_number,
|
||||
tx_count_from_versions AS transaction_count
|
||||
tx_count AS transaction_count
|
||||
FROM
|
||||
{{ ref('core__fact_blocks') }}
|
||||
WHERE
|
||||
@ -75,6 +75,8 @@ base_blocks AS (
|
||||
FROM
|
||||
summary_stats
|
||||
)
|
||||
AND
|
||||
block_number NOT IN (0, 1758, 1760, 1761, 1762, 1763, 1764, 1766)
|
||||
),
|
||||
actual_tx_counts AS (
|
||||
SELECT
|
||||
@ -95,6 +97,8 @@ actual_tx_counts AS (
|
||||
FROM
|
||||
summary_stats
|
||||
)
|
||||
AND
|
||||
block_number NOT IN (0, 1758, 1760, 1761, 1762, 1763, 1764, 1766)
|
||||
GROUP BY
|
||||
block_number
|
||||
),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user