summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/db.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/db.ts')
-rw-r--r--packages/taler-wallet-core/src/db.ts14
1 files changed, 2 insertions, 12 deletions
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts
index ac28d0979..2e76ab523 100644
--- a/packages/taler-wallet-core/src/db.ts
+++ b/packages/taler-wallet-core/src/db.ts
@@ -597,9 +597,6 @@ export interface PlanchetRecord {
denomPubHash: string;
- // FIXME: maybe too redundant?
- denomPub: DenominationPubKey;
-
blindingKey: string;
withdrawSig: string;
@@ -607,10 +604,6 @@ export interface PlanchetRecord {
coinEv: CoinEnvelope;
coinEvHash: string;
-
- coinValue: AmountJson;
-
- isFromTip: boolean;
}
/**
@@ -686,11 +679,6 @@ export interface CoinRecord {
coinPriv: string;
/**
- * Key used by the exchange used to sign the coin.
- */
- denomPub: DenominationPubKey;
-
- /**
* Hash of the public key that signs the coin.
*/
denomPubHash: string;
@@ -1378,6 +1366,8 @@ export interface WithdrawalGroupRecord {
/**
* When was the withdrawal operation completed?
+ *
+ * FIXME: We should probably drop this and introduce an OperationStatus field.
*/
timestampFinish?: Timestamp;