fix: create sweepable coins list

This commit is contained in:
Sérgio Salgado 2022-07-29 19:17:19 +01:00
parent 10245bbb19
commit cd8f29cc64
3 changed files with 7 additions and 3 deletions

View file

@ -807,7 +807,7 @@ function plugins (settings, deviceId) {
function sweepHd () {
const sql = `SELECT id, crypto_code, hd_index FROM cash_out_txs
WHERE hd_index IS NOT NULL AND NOT swept AND status IN ('confirmed', 'instant') AND created < now() - interval '1 week'`
WHERE hd_index IS NOT NULL AND NOT swept AND status IN ('confirmed', 'instant') AND created > now() - interval '1 week'`
return db.any(sql)
.then(rows => Promise.all(rows.map(sweepHdRow)))