diff options
| author | Florian Dold <florian.dold@gmail.com> | 2020-03-26 20:47:14 +0530 |
|---|---|---|
| committer | Florian Dold <florian.dold@gmail.com> | 2020-03-26 20:47:14 +0530 |
| commit | c2e261e018b96d2966b849a470457090ba073393 (patch) | |
| tree | ea72b05cfcc08b91e0b2afec0d76e0adf167c563 | |
| parent | 3d0fbea4671f5a4a35f29445fbf10e3138f49229 (diff) | |
fix store access list for recoup
| -rw-r--r-- | src/operations/recoup.ts | 2 |
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) { |
