summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-03-26 20:47:14 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-03-26 20:47:14 +0530
commitc2e261e018b96d2966b849a470457090ba073393 (patch)
treeea72b05cfcc08b91e0b2afec0d76e0adf167c563
parent3d0fbea4671f5a4a35f29445fbf10e3138f49229 (diff)
downloadwallet-core-c2e261e018b96d2966b849a470457090ba073393.tar.gz
wallet-core-c2e261e018b96d2966b849a470457090ba073393.tar.bz2
wallet-core-c2e261e018b96d2966b849a470457090ba073393.zip
fix store access list for recoup
-rw-r--r--src/operations/recoup.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/operations/recoup.ts b/src/operations/recoup.ts
index 3c3d0f453..7eba8330c 100644
--- a/src/operations/recoup.ts
+++ b/src/operations/recoup.ts
@@ -228,7 +228,7 @@ async function recoupRefreshCoin(
}
const refreshGroupId = await ws.db.runWithWriteTransaction(
- [Stores.coins, Stores.reserves],
+ [Stores.coins, Stores.reserves, Stores.recoupGroups],
async tx => {
const recoupGroup = await tx.get(Stores.recoupGroups, recoupGroupId);
if (!recoupGroup) {