From 504d9f09b433cec44b7992b8d8d7255760d86aa4 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 1 Nov 2022 17:16:36 +0100 Subject: wallet-core: remove kyc and wad fee --- packages/taler-util/src/backup-types.ts | 3 --- packages/taler-util/src/wallet-types.ts | 7 ------- 2 files changed, 10 deletions(-) (limited to 'packages/taler-util') diff --git a/packages/taler-util/src/backup-types.ts b/packages/taler-util/src/backup-types.ts index f44a8ba3f..6c9c7b424 100644 --- a/packages/taler-util/src/backup-types.ts +++ b/packages/taler-util/src/backup-types.ts @@ -1070,8 +1070,6 @@ export interface BackupExchangeWireFee { */ wire_fee: string; - wad_fee: string; - /** * Fees to close and refund a reserve. */ @@ -1101,7 +1099,6 @@ export interface BackupExchangeGlobalFees { startDate: TalerProtocolTimestamp; endDate: TalerProtocolTimestamp; - kycFee: BackupAmountString; historyFee: BackupAmountString; accountFee: BackupAmountString; purseFee: BackupAmountString; diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts index 24a97ba12..fc173f1e9 100644 --- a/packages/taler-util/src/wallet-types.ts +++ b/packages/taler-util/src/wallet-types.ts @@ -726,11 +726,6 @@ export interface WireFee { */ closingFee: AmountJson; - /** - * Fees for inter-exchange transfers from P2P payments. - */ - wadFee: AmountJson; - /** * Start date of the fee. */ @@ -766,7 +761,6 @@ export interface ExchangeGlobalFees { startDate: TalerProtocolTimestamp; endDate: TalerProtocolTimestamp; - kycFee: AmountJson; historyFee: AmountJson; accountFee: AmountJson; purseFee: AmountJson; @@ -790,7 +784,6 @@ const codecForWireFee = (): Codec => buildCodecForObject() .property("sig", codecForString()) .property("wireFee", codecForAmountJson()) - .property("wadFee", codecForAmountJson()) .property("closingFee", codecForAmountJson()) .property("startStamp", codecForTimestamp) .property("endStamp", codecForTimestamp) -- cgit v1.2.3