diff options
author | Florian Dold <florian@dold.me> | 2022-11-01 17:16:36 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-11-01 17:26:24 +0100 |
commit | 504d9f09b433cec44b7992b8d8d7255760d86aa4 (patch) | |
tree | 830833d9377be27910cda79d69f6a38e797a0739 /packages/taler-util | |
parent | ab48d3df6ed738251ffdb8c028ceb0d981534137 (diff) |
wallet-core: remove kyc and wad fee
Diffstat (limited to 'packages/taler-util')
-rw-r--r-- | packages/taler-util/src/backup-types.ts | 3 | ||||
-rw-r--r-- | packages/taler-util/src/wallet-types.ts | 7 |
2 files changed, 0 insertions, 10 deletions
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 @@ -727,11 +727,6 @@ export interface WireFee { closingFee: AmountJson; /** - * Fees for inter-exchange transfers from P2P payments. - */ - wadFee: AmountJson; - - /** * Start date of the fee. */ startStamp: TalerProtocolTimestamp; @@ -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<WireFee> => buildCodecForObject<WireFee>() .property("sig", codecForString()) .property("wireFee", codecForAmountJson()) - .property("wadFee", codecForAmountJson()) .property("closingFee", codecForAmountJson()) .property("startStamp", codecForTimestamp) .property("endStamp", codecForTimestamp) |