aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-01-18 19:30:48 +0100
committerFlorian Dold <florian@dold.me>2023-01-18 19:33:01 +0100
commit598de5b0d576987ea317b22fd6d33cbe4a1a19ac (patch)
treefe5923b5a8f77a198927e41fb2fe2201294c5b43 /packages/taler-util
parent5e129abe9e8d71c2fa67bc542684f49b76551379 (diff)
downloadwallet-core-598de5b0d576987ea317b22fd6d33cbe4a1a19ac.tar.xz
wallet-core: Add 'deposited' field to deposit transaction
This field indicates whether the POST requests to deposit coins went through with the exchange. We also don't consider a deposit transaction as having lifeness when it is already deposited and we're just querying for informational deposit tracking information.
Diffstat (limited to 'packages/taler-util')
-rw-r--r--packages/taler-util/src/transactions-types.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts
index e81625a5a..7562b5884 100644
--- a/packages/taler-util/src/transactions-types.ts
+++ b/packages/taler-util/src/transactions-types.ts
@@ -550,6 +550,11 @@ export interface TransactionDeposit extends TransactionCommon {
wireTransferDeadline: TalerProtocolTimestamp;
wireTransferProgress: number;
+
+ /**
+ * Did all the deposit requests succeed?
+ */
+ deposited: boolean;
}
export interface TransactionByIdRequest {