Skip to content

Commit

Permalink
Use tx hash in old backfill
Browse files Browse the repository at this point in the history
  • Loading branch information
Ktl-XV committed Jan 30, 2024
1 parent bf145c3 commit 1922288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/pull_and_save_backfill_tx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class BackfillTxScraper {
const txBacklogQuery = `
UPDATE ${SCHEMA}.tx_backfill
SET done = true
WHERE block_number IN (${txHashList})`;
WHERE transaction_hash IN (${txHashList})`;

const queryRunner = connection.createQueryRunner();
await queryRunner.connect();
Expand Down

0 comments on commit 1922288

Please sign in to comment.