summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2020-11-26 22:14:46 +0100
committerFlorian Dold <florian@dold.me>2020-11-26 22:14:46 +0100
commit4e481a51c64084db21d3eea513b13a7a3bd6603a (patch)
treede77c119522f3cd277bf9a4817c7e6f51f6ea4b2 /packages/taler-wallet-core/src/operations
parent2b19594e7adfc4ae75970db5c0881243efcac4df (diff)
downloadwallet-core-4e481a51c64084db21d3eea513b13a7a3bd6603a.tar.gz
wallet-core-4e481a51c64084db21d3eea513b13a7a3bd6603a.tar.bz2
wallet-core-4e481a51c64084db21d3eea513b13a7a3bd6603a.zip
more static typing for transactions (fixes #6653)
Diffstat (limited to 'packages/taler-wallet-core/src/operations')
-rw-r--r--packages/taler-wallet-core/src/operations/tip.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/tip.ts b/packages/taler-wallet-core/src/operations/tip.ts
index cbf61a86c..bf565b9b2 100644
--- a/packages/taler-wallet-core/src/operations/tip.ts
+++ b/packages/taler-wallet-core/src/operations/tip.ts
@@ -285,7 +285,7 @@ async function processTipImpl(
);
if (!isValid) {
- await ws.db.runWithWriteTransaction([Stores.planchets], async (tx) => {
+ await ws.db.runWithWriteTransaction([Stores.tips], async (tx) => {
const tipRecord = await tx.get(Stores.tips, walletTipId);
if (!tipRecord) {
return;