diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-09-09 11:48:50 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-09-09 11:48:50 +0530 |
commit | 35999179b1a947bab90fbbc48224fc8db1d03d64 (patch) | |
tree | 6fb996e94c5757e175bff0dcfa628462ed86673d | |
parent | 75e73c111d3917da1c3bf1d9b3aa192a9404af7f (diff) |
comment
-rw-r--r-- | packages/taler-wallet-core/src/types/dbTypes.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/types/dbTypes.ts b/packages/taler-wallet-core/src/types/dbTypes.ts index d10be80ce..4cd98cac1 100644 --- a/packages/taler-wallet-core/src/types/dbTypes.ts +++ b/packages/taler-wallet-core/src/types/dbTypes.ts @@ -247,6 +247,12 @@ export interface ReserveRecord { * the first withdrawal has started. */ initialWithdrawalStarted: boolean; + + /** + * Initial denomination selection, stored here so that + * we can show this information in the transactions/balances + * before we have a withdrawal group. + */ initialDenomSel: DenomSelectionState; reserveStatus: ReserveRecordStatus; |