diff options
author | Florian Dold <florian@dold.me> | 2023-06-06 15:55:20 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2023-06-06 15:55:20 +0200 |
commit | 2d243b67c8bf278f5721219e6474d89481b5661b (patch) | |
tree | 9bfd1ab571e13717c7b1b15eddde35b079bd2dd2 | |
parent | 574a91fcc1d9754b92b4870aedc92bc44ece2fa1 (diff) |
wallet-core: missing put operation
-rw-r--r-- | packages/taler-wallet-core/src/operations/pay-peer-push-debit.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/operations/pay-peer-push-debit.ts b/packages/taler-wallet-core/src/operations/pay-peer-push-debit.ts index cc90416fb..2835a1f64 100644 --- a/packages/taler-wallet-core/src/operations/pay-peer-push-debit.ts +++ b/packages/taler-wallet-core/src/operations/pay-peer-push-debit.ts @@ -251,6 +251,7 @@ async function processPeerPushDebitAbortingDeletePurse( ); ppiRec.status = PeerPushPaymentInitiationStatus.AbortingRefresh; ppiRec.abortRefreshGroupId = refresh.refreshGroupId; + await tx.peerPushPaymentInitiations.put(ppiRec); const newTxState = computePeerPushDebitTransactionState(ppiRec); return { oldTxState, |