aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/db.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-04-21 22:02:34 +0200
committerFlorian Dold <florian@dold.me>2023-04-21 22:02:40 +0200
commite81ae0f3e5a510424076b611ac32385057cbdaed (patch)
tree1583ae253ec979f6dfdef5cd4581db6a7d33818a /packages/taler-wallet-core/src/db.ts
parentfc2adae6bd34164b4a13b270be4c585f090afb61 (diff)
wallet-harness: make sure events are not lost in deposit test
Diffstat (limited to 'packages/taler-wallet-core/src/db.ts')
-rw-r--r--packages/taler-wallet-core/src/db.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts
index 4e9228c6d..f5342b4cd 100644
--- a/packages/taler-wallet-core/src/db.ts
+++ b/packages/taler-wallet-core/src/db.ts
@@ -865,6 +865,7 @@ export enum DepositGroupOperationStatus {
AbortingWithRefresh = 11 /* ACTIVE_START + 1 */,
}
+// FIXME: Improve name! This enum is very specific to deposits.
export enum TransactionStatus {
Unknown = 10,
Accepted = 20,
@@ -1380,6 +1381,7 @@ export type WgInfo =
| WgInfoBankRecoup;
export type KycUserType = "individual" | "business";
+
export interface KycPendingInfo {
paytoHash: string;
requirementRow: number;