diff options
-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; |