Skip to content

Commit

Permalink
fix: Increase timestamp check to 5 days
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaituVR authored Dec 9, 2024
1 parent 4fa1be3 commit 1654307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { timeMessageProcess } from './metrics';
import db from './mysql';
import { fetchWithKeepAlive } from './utils';

const delay = 60 * 60 * 24 * 3;
const delay = 60 * 60 * 24 * 5; // 5 days
const interval = 15e3;
const broviderUrl = process.env.BROVIDER_URL || 'https://rpc.snapshot.org';

Expand Down

0 comments on commit 1654307

Please sign in to comment.