[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-typescript-core] branch master updated: -comments
From: |
Admin |
Subject: |
[taler-typescript-core] branch master updated: -comments |
Date: |
Tue, 03 Jun 2025 19:55:29 +0200 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository taler-typescript-core.
The following commit(s) were added to refs/heads/master by this push:
new 0f58e5930 -comments
0f58e5930 is described below
commit 0f58e593047b5b5041688f76e2be4c576cb158ce
Author: Florian Dold <florian@dold.me>
AuthorDate: Tue Jun 3 19:46:52 2025 +0200
-comments
---
packages/taler-wallet-core/src/deposits.ts | 3 +++
packages/taler-wallet-core/src/transactions.ts | 10 ++++++++++
2 files changed, 13 insertions(+)
diff --git a/packages/taler-wallet-core/src/deposits.ts
b/packages/taler-wallet-core/src/deposits.ts
index f21d91e9e..ebc7a0911 100644
--- a/packages/taler-wallet-core/src/deposits.ts
+++ b/packages/taler-wallet-core/src/deposits.ts
@@ -1859,6 +1859,9 @@ export async function processDepositGroup(
return TaskRunResult.finished();
}
+/**
+ * Long-poll on the deposit tracking information.
+ */
async function trackDeposit(
wex: WalletExecutionContext,
depositGroup: DepositGroupRecord,
diff --git a/packages/taler-wallet-core/src/transactions.ts
b/packages/taler-wallet-core/src/transactions.ts
index 122694558..1c1ec7051 100644
--- a/packages/taler-wallet-core/src/transactions.ts
+++ b/packages/taler-wallet-core/src/transactions.ts
@@ -921,8 +921,18 @@ export interface TransitionInfo {
}
export enum BalanceEffect {
+ /**
+ * There is no effect on the balance.
+ */
None = 0,
+ /**
+ * Balance change is internal and should not
+ * change the user-visible balance.
+ */
PreserveUserVisible = 1,
+ /**
+ * Balance change can have any effect.
+ */
Any = 2,
}
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-typescript-core] branch master updated: -comments,
Admin <=