aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-02-14 13:18:33 +0100
committerFlorian Dold <florian@dold.me>2023-02-14 13:18:33 +0100
commitbb8bf3cb5596fe615359e4b984d6a7f51560e92b (patch)
treef1805c1be19cfa80afec062c2d634dfd3eb78972 /packages/taler-util
parentb73accfe4a5a328fbbebcc9bdfd9b4740af90058 (diff)
downloadwallet-core-bb8bf3cb5596fe615359e4b984d6a7f51560e92b.tar.xz
wallet-core: more details in refresh transaction
Diffstat (limited to 'packages/taler-util')
-rw-r--r--packages/taler-util/src/transactions-types.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts
index 7d5cb9ae1..9623e25a9 100644
--- a/packages/taler-util/src/transactions-types.ts
+++ b/packages/taler-util/src/transactions-types.ts
@@ -535,8 +535,15 @@ export interface TransactionRefresh extends TransactionCommon {
/**
* Fees, i.e. the effective, negative effect of the refresh
* on the balance.
+ *
+ * Only applicable for stand-alone refreshes, and zero for
+ * other refreshes where the transaction itself accounts for the
+ * refresh fee.
*/
amountEffective: AmountString;
+
+ refreshInputAmount: AmountString;
+ refreshOutputAmount: AmountString;
}
/**