commit 0ba8fe9428dc5779cc98bf4e875f60eb01966323
parent 12a9b08c6f8c31f684239a30fc39acc9189c6571
Author: Florian Dold <florian@dold.me>
Date: Mon, 18 Dec 2023 21:02:16 +0100
-fix range
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-wallet-core/src/operations/pending.ts b/packages/taler-wallet-core/src/operations/pending.ts
@@ -640,7 +640,7 @@ export async function iterRecordsForPeerPushInitiation(
if (filter.onlyState === "nonfinal") {
const keyRange = GlobalIDB.KeyRange.bound(
PeerPushDebitStatus.PendingCreatePurse,
- PeerPushDebitStatus.AbortingRefreshDeleted,
+ PeerPushDebitStatus.AbortingRefreshExpired,
);
await tx.peerPushDebit.indexes.byStatus.iter(keyRange).forEachAsync(f);
} else {