diff options
author | Sebastian <sebasjm@gmail.com> | 2023-03-31 14:50:59 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-03-31 14:50:59 -0300 |
commit | b08bb05a40ac42399bae12d65af4c5489c216786 (patch) | |
tree | 207fd85850e2fa2c11211c3345f60057c5afb405 /packages/taler-wallet-core/src/db.ts | |
parent | a8d30ef0f91cd7d36a30aeaad1d2df98d444692e (diff) |
save wire fee instead of effective amount
Diffstat (limited to 'packages/taler-wallet-core/src/db.ts')
-rw-r--r-- | packages/taler-wallet-core/src/db.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts index fb5ea025a..9ee157a2a 100644 --- a/packages/taler-wallet-core/src/db.ts +++ b/packages/taler-wallet-core/src/db.ts @@ -1680,8 +1680,8 @@ export interface DepositGroupRecord { 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; exchangePub: string; }; }; |