diff options
author | Florian Dold <florian@dold.me> | 2022-03-10 16:30:24 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-03-10 16:30:24 +0100 |
commit | 9d660788521d93452aa767d86158889fd4870fd1 (patch) | |
tree | 1ee3315e9224ee56b1848cfab02974a2dc6a2da6 /packages/taler-wallet-core/src/db.ts | |
parent | 1607c728bca19a003ca08b64b4d2afc73e4d1e2a (diff) |
wallet-core: do not rely on reserve history for withdrawals
Diffstat (limited to 'packages/taler-wallet-core/src/db.ts')
-rw-r--r-- | packages/taler-wallet-core/src/db.ts | 14 |
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; |