aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/transactions.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/operations/transactions.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/transactions.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts
index c7ff4161a..1e7f982bc 100644
--- a/packages/taler-wallet-core/src/operations/transactions.ts
+++ b/packages/taler-wallet-core/src/operations/transactions.ts
@@ -540,7 +540,6 @@ function buildTransactionForTip(
/**
* For a set of refund with the same executionTime.
- *
*/
interface MergedRefundInfo {
executionTime: TalerProtocolTimestamp;
@@ -556,7 +555,7 @@ function mergeRefundByExecutionTime(
const refundByExecTime = rs.reduce((prev, refund) => {
const key = `${refund.executionTime.t_s}`;
- //refunds counts if applied
+ // refunds count if applied
const effective =
refund.type === RefundState.Applied
? Amounts.sub(
@@ -582,7 +581,10 @@ function mergeRefundByExecutionTime(
v.amountAppliedEffective,
effective,
).amount;
- v.amountAppliedRaw = Amounts.add(v.amountAppliedRaw).amount;
+ v.amountAppliedRaw = Amounts.add(
+ v.amountAppliedRaw,
+ refund.refundAmount,
+ ).amount;
v.firstTimestamp = TalerProtocolTimestamp.min(
v.firstTimestamp,
refund.obtainedTime,