summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-12-18 21:02:16 +0100
committerFlorian Dold <florian@dold.me>2023-12-18 21:02:16 +0100
commit0ba8fe9428dc5779cc98bf4e875f60eb01966323 (patch)
tree58e1bec473b3304d75140526c798019933854e0a
parent12a9b08c6f8c31f684239a30fc39acc9189c6571 (diff)
downloadwallet-core-0ba8fe9428dc5779cc98bf4e875f60eb01966323.tar.gz
wallet-core-0ba8fe9428dc5779cc98bf4e875f60eb01966323.tar.bz2
wallet-core-0ba8fe9428dc5779cc98bf4e875f60eb01966323.zip
-fix range
-rw-r--r--packages/taler-wallet-core/src/operations/pending.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/pending.ts b/packages/taler-wallet-core/src/operations/pending.ts
index 233ca3fa4..e554a9b0f 100644
--- 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 {