aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/transactions.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-02-20 14:40:26 +0100
committerFlorian Dold <florian@dold.me>2023-02-20 14:40:37 +0100
commit6b28885f0bfaf4ae4d6073db360f67088bda7a17 (patch)
treef5b22e6d3ed936a09d883a89bf5e4efc529df638 /packages/taler-wallet-core/src/operations/transactions.ts
parentc191a2da860fe7ba9a2439f04c94cdd894bd1fa8 (diff)
downloadwallet-core-6b28885f0bfaf4ae4d6073db360f67088bda7a17.tar.xz
wallet-core: stubs for suspend/resume tx
Diffstat (limited to 'packages/taler-wallet-core/src/operations/transactions.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/transactions.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts
index 9ee1c1e74..c03d2aa3d 100644
--- a/packages/taler-wallet-core/src/operations/transactions.ts
+++ b/packages/taler-wallet-core/src/operations/transactions.ts
@@ -1405,6 +1405,25 @@ export async function retryTransaction(
}
/**
+ * Suspends a pending transaction, stopping any associated network activities,
+ * but with a chance of trying again at a later time. This could be useful if
+ * a user needs to save battery power or bandwidth and an operation is expected
+ * to take longer (such as a backup, recovery or very large withdrawal operation).
+ */
+export async function suspendTransaction(
+ ws: InternalWalletState,
+ transactionId: string,
+): Promise<void> {}
+
+/**
+ * Resume a suspended transaction.
+ */
+export async function resumeTransaction(
+ ws: InternalWalletState,
+ transactionId: string,
+): Promise<void> {}
+
+/**
* Permanently delete a transaction based on the transaction ID.
*/
export async function deleteTransaction(