diff options
| author | Florian Dold <florian@dold.me> | 2023-06-30 22:59:50 +0200 | 
|---|---|---|
| committer | Florian Dold <florian@dold.me> | 2023-06-30 22:59:50 +0200 | 
| commit | bac2ac01b892f59bb7063582f6899b9ae8cec33e (patch) | |
| tree | 2bcdb428d30a018ecc50ef5004df32b7a1f7db25 /packages/taler-wallet-core/src/operations | |
| parent | 9cfc138e751ba281897389064179e0f4763929e0 (diff) | |
wallet-core: fix pending operation query for p2p tx
Diffstat (limited to 'packages/taler-wallet-core/src/operations')
| -rw-r--r-- | packages/taler-wallet-core/src/operations/pending.ts | 2 | 
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 e3f7d0fab..870437e2e 100644 --- a/packages/taler-wallet-core/src/operations/pending.ts +++ b/packages/taler-wallet-core/src/operations/pending.ts @@ -372,7 +372,7 @@ async function gatherPeerPullInitiationPending(    resp: PendingOperationsResponse,  ): Promise<void> {    const keyRange = GlobalIDB.KeyRange.bound( -    PeerPullPaymentInitiationStatus.PendingReady, +    PeerPullPaymentInitiationStatus.PendingCreatePurse,      PeerPullPaymentInitiationStatus.AbortingDeletePurse,    );    await tx.peerPullPaymentInitiations.indexes.byStatus | 
