Skip to content

Commit 83f2416

Browse files
committed
96h window
1 parent a3d6aba commit 83f2416

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const fetchOrders = async () => {
4545
const now = new Date();
4646
const diff = now.getTime() - processedAt.getTime();
4747
const diffHours = diff / (1000 * 60 * 60);
48-
if (diffHours > 24) {
48+
if (diffHours > 96) {
4949
return;
5050
}
5151
if (postedTxHashes.includes(order.meta.txHashes[0])) {

0 commit comments

Comments
 (0)