aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/refresh.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-08-24 15:43:06 +0200
committerFlorian Dold <florian@dold.me>2021-08-24 15:43:06 +0200
commit4c41e705658cbae6e4558bf29edeb39f474c244a (patch)
tree6e598a6fd1ead8972c0b6cf551c3f3cb8293aec0 /packages/taler-wallet-core/src/operations/refresh.ts
parenta09359bd3930f2a4550de22bd018122a2c7846e6 (diff)
downloadwallet-core-4c41e705658cbae6e4558bf29edeb39f474c244a.tar.xz
DB schema cleanup
Diffstat (limited to 'packages/taler-wallet-core/src/operations/refresh.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/refresh.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/operations/refresh.ts b/packages/taler-wallet-core/src/operations/refresh.ts
index 8926559e3..a7b64f5d3 100644
--- a/packages/taler-wallet-core/src/operations/refresh.ts
+++ b/packages/taler-wallet-core/src/operations/refresh.ts
@@ -22,7 +22,6 @@ import {
DenominationRecord,
RefreshCoinStatus,
RefreshGroupRecord,
- RefreshPlanchet,
WalletStoresV1,
} from "../db.js";
import {
@@ -32,6 +31,7 @@ import {
fnutil,
NotificationType,
RefreshGroupId,
+ RefreshPlanchetInfo,
RefreshReason,
stringifyTimestamp,
TalerErrorDetails,
@@ -534,7 +534,7 @@ async function refreshReveal(
throw Error("refresh index error");
}
- const evs = planchets.map((x: RefreshPlanchet) => x.coinEv);
+ const evs = planchets.map((x: RefreshPlanchetInfo) => x.coinEv);
const newDenomsFlat: string[] = [];
const linkSigs: string[] = [];