aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-04-08 21:27:33 +0200
committerFlorian Dold <florian@dold.me>2024-04-08 21:27:33 +0200
commit30dea85f1e2410f974f8c16e4e53d4ba1290442d (patch)
tree735a68e1ccdd559adc220b800caea565c0cc7fbe /packages/taler-util
parent85b6213333b211bbfae9209630d8446108c4ce56 (diff)
downloadwallet-core-30dea85f1e2410f974f8c16e4e53d4ba1290442d.tar.xz
wallet-core: perf, caching
Diffstat (limited to 'packages/taler-util')
-rw-r--r--packages/taler-util/src/wallet-types.ts12
1 files changed, 2 insertions, 10 deletions
diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts
index 693aa704a..34d91d3d6 100644
--- a/packages/taler-util/src/wallet-types.ts
+++ b/packages/taler-util/src/wallet-types.ts
@@ -1588,6 +1588,8 @@ export interface DenomSelectionState {
totalCoinValue: AmountString;
totalWithdrawCost: AmountString;
selectedDenoms: DenomSelItem[];
+ earliestDepositExpiration: TalerProtocolTimestamp;
+ hasDenomWithAgeRestriction: boolean;
}
/**
@@ -1621,16 +1623,6 @@ export interface ExchangeWithdrawalDetails {
earliestDepositExpiration: TalerProtocolTimestamp;
/**
- * Number of currently offered denominations.
- */
- numOfferedDenoms: number;
-
- /**
- * Public keys of trusted auditors for the currency we're withdrawing.
- */
- trustedAuditorPubs: string[];
-
- /**
* Result of checking the wallet's version
* against the exchange's version.
*