Skip to content

Commit

Permalink
exclude tx from tests temporarily (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
drethereum authored Dec 13, 2024
1 parent 1a2fdea commit d5e791d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions macros/tests/missing_txs.sql
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ FROM
ON base_block_number = model_block_number
AND base_tx_hash = model_tx_hash
WHERE
model_tx_hash IS NULL
OR model_block_number IS NULL
(model_tx_hash IS NULL
OR model_block_number IS NULL)
AND base_tx_hash <> '0x13b126388e78adc0fff1b40888b2cd87e6ec0d6c3c9838ee26119b81173bcf25'
{% endmacro %}

{% macro missing_confirmed_txs(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ models:
partition_by:
- BLOCK_NUMBER
column_name: POSITION
where: BLOCK_NUMBER <> 23635928
columns:
- name: BLOCK_NUMBER
tests:
Expand Down
1 change: 1 addition & 0 deletions models/streamline/silver/core/retry/_missing_receipts.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ WHERE
AND (
r._inserted_timestamp >= DATEADD('hour', -84, SYSDATE())
OR r._inserted_timestamp IS NULL)
AND t.tx_hash <> '0x13b126388e78adc0fff1b40888b2cd87e6ec0d6c3c9838ee26119b81173bcf25'

0 comments on commit d5e791d

Please sign in to comment.