Skip to content

Commit ddc115e

Browse files
committed
Fix notification indicator on retry timeout
1 parent dea2e7a commit ddc115e

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

api/resolvers/notifications.js

-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,6 @@ export default {
356356
"Invoice"."paymentAttempt" >= ${WALLET_MAX_RETRIES}
357357
OR "Invoice"."actionType" = 'ITEM_CREATE'
358358
OR "Invoice"."userCancel" = true
359-
-- TODO: test this since invoice is not updated after retry-before
360359
OR "Invoice"."cancelledAt" <= now() - interval '${`${WALLET_RETRY_BEFORE_MS} milliseconds`}'
361360
)
362361
AND (

api/resolvers/user.js

-1
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,6 @@ export default {
557557
userCancel: true
558558
},
559559
{
560-
// TODO: test this since invoice is not updated after retry-before
561560
cancelledAt: {
562561
lte: datePivot(new Date(), { milliseconds: -WALLET_RETRY_BEFORE_MS })
563562
}

worker/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import createPrisma from '@/lib/create-prisma'
55
import {
66
checkInvoice, checkPendingDeposits, checkPendingWithdrawals,
77
checkWithdrawal,
8-
finalizeHodlInvoice, subscribeToWallet
8+
finalizeHodlInvoice, retryTimeout, subscribeToWallet
99
} from './wallet'
1010
import { repin } from './repin'
1111
import { trust } from './trust'
@@ -101,6 +101,7 @@ async function work () {
101101
await boss.work('autoDropBolt11s', jobWrapper(autoDropBolt11s))
102102
await boss.work('autoWithdraw', jobWrapper(autoWithdraw))
103103
await boss.work('checkInvoice', jobWrapper(checkInvoice))
104+
await boss.work('retryTimeout', jobWrapper(retryTimeout))
104105
await boss.work('checkWithdrawal', jobWrapper(checkWithdrawal))
105106
// paidAction jobs
106107
await boss.work('paidActionForwarding', jobWrapper(paidActionForwarding))

worker/paidAction.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { getPaymentFailureStatus, hodlInvoiceCltvDetails, getPaymentOrNotSent } from '@/api/lnd'
22
import { paidActions } from '@/api/paidAction'
33
import { walletLogger } from '@/api/resolvers/wallet'
4-
import { LND_PATHFINDING_TIME_PREF_PPM, LND_PATHFINDING_TIMEOUT_MS, PAID_ACTION_TERMINAL_STATES } from '@/lib/constants'
4+
import { LND_PATHFINDING_TIME_PREF_PPM, LND_PATHFINDING_TIMEOUT_MS, PAID_ACTION_TERMINAL_STATES, WALLET_RETRY_BEFORE_MS } from '@/lib/constants'
55
import { formatMsats, formatSats, msatsToSats, toPositiveNumber } from '@/lib/format'
66
import { datePivot } from '@/lib/time'
77
import { Prisma } from '@prisma/client'
@@ -466,9 +466,19 @@ export async function paidActionFailed ({ data: { invoiceId, ...args }, models,
466466

467467
await paidActions[dbInvoice.actionType].onFail?.({ invoice: dbInvoice }, { models, tx, lnd })
468468

469+
const cancelledAt = new Date()
470+
471+
// XXX update invoice after retry timeout for notification indicator
472+
await models.$executeRaw`
473+
INSERT INTO pgboss.job (name, data, retrylimit, retrybackoff, startafter, keepuntil, priority)
474+
VALUES ('retryTimeout',
475+
jsonb_build_object('hash', ${dbInvoice.hash}::TEXT), 21, true,
476+
${cancelledAt}::TIMESTAMP WITH TIME ZONE + ${`${WALLET_RETRY_BEFORE_MS} milliseconds`}::interval,
477+
${cancelledAt}::TIMESTAMP WITH TIME ZONE + ${`${2 * WALLET_RETRY_BEFORE_MS} milliseconds`}::interval, 100)`
478+
469479
return {
470480
cancelled: true,
471-
cancelledAt: new Date()
481+
cancelledAt
472482
}
473483
},
474484
...args

worker/wallet.js

+4
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,10 @@ export async function checkInvoice ({ data: { hash, invoice }, boss, models, lnd
161161
}
162162
}
163163

164+
export async function retryTimeout ({ data: { hash }, models, lnd, boss }) {
165+
await models.invoice.update({ where: { hash }, data: { updatedAt: new Date() } })
166+
}
167+
164168
async function subscribeToWithdrawals (args) {
165169
const { lnd } = args
166170

0 commit comments

Comments
 (0)