From b7f7b956028566c689d802258937deb081d5dc60 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 15 Sep 2022 20:16:42 +0200 Subject: wallet-core: towards faster coin selection --- packages/taler-util/src/walletTypes.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'packages/taler-util/src') diff --git a/packages/taler-util/src/walletTypes.ts b/packages/taler-util/src/walletTypes.ts index 7fcb752b1..c3e5c6ed0 100644 --- a/packages/taler-util/src/walletTypes.ts +++ b/packages/taler-util/src/walletTypes.ts @@ -694,6 +694,7 @@ const codecForDenominationInfo = (): Codec => .property("stampExpireWithdraw", codecForTimestamp) .property("stampExpireLegal", codecForTimestamp) .property("stampExpireDeposit", codecForTimestamp) + .property("exchangeBaseUrl", codecForString()) .build("codecForDenominationInfo"); export interface DenominationInfo { @@ -747,6 +748,8 @@ export interface DenominationInfo { * Data after which coins of this denomination can't be deposited anymore. */ stampExpireDeposit: TalerProtocolTimestamp; + + exchangeBaseUrl: string; } export type Operation = "deposit" | "withdraw" | "refresh" | "refund"; -- cgit v1.2.3