aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/transactions-types.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-03-31 14:50:59 -0300
committerSebastian <sebasjm@gmail.com>2023-03-31 14:50:59 -0300
commitb08bb05a40ac42399bae12d65af4c5489c216786 (patch)
tree207fd85850e2fa2c11211c3345f60057c5afb405 /packages/taler-util/src/transactions-types.ts
parenta8d30ef0f91cd7d36a30aeaad1d2df98d444692e (diff)
downloadwallet-core-b08bb05a40ac42399bae12d65af4c5489c216786.tar.xz
save wire fee instead of effective amount
Diffstat (limited to 'packages/taler-util/src/transactions-types.ts')
-rw-r--r--packages/taler-util/src/transactions-types.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts
index 1d7e6ef30..d3b68b114 100644
--- a/packages/taler-util/src/transactions-types.ts
+++ b/packages/taler-util/src/transactions-types.ts
@@ -586,8 +586,8 @@ export interface TransactionDeposit extends TransactionCommon {
timestampExecuted: TalerProtocolTimestamp;
// Total amount transfer for this wtid (including fees)
amountRaw: AmountString;
- // Total amount received for this wtid (without fees)
- amountEffective: AmountString;
+ // Wire fee amount for this exchange
+ wireFee: AmountString;
}>;
}