mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-22 17:12:03 -07:00
fix(offer): Changing stale threshold from 7 days to 8 weeks
This commit is contained in:
@@ -379,10 +379,10 @@ class OfferUseCases {
|
||||
|
||||
// If the Offer is older than 7 days, delete it.
|
||||
const nowMs = now.getTime()
|
||||
const sevenDays = 1000 * 60 * 60 * 24 * 7
|
||||
const sevenDaysAgo = nowMs - sevenDays
|
||||
if (thisOffer.timestamp < sevenDaysAgo) {
|
||||
console.log('Offer older than 7 days. Deleting.')
|
||||
const eightWeeks = 1000 * 60 * 60 * 24 * 7 * 8
|
||||
const eightWeeksAgo = nowMs - eightWeeks
|
||||
if (thisOffer.timestamp < eightWeeksAgo) {
|
||||
console.log('Offer older than 8 weeks. Deleting.')
|
||||
await thisOffer.remove()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user