diff options
Diffstat (limited to 'packages/taler-wallet-core/src/operations')
| -rw-r--r-- | packages/taler-wallet-core/src/operations/transactions.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts index 52b9819dd..a07551e82 100644 --- a/packages/taler-wallet-core/src/operations/transactions.ts +++ b/packages/taler-wallet-core/src/operations/transactions.ts @@ -403,6 +403,13 @@ export enum TombstoneTag { DeleteRefund = "delete-refund", } +export async function retryTransactionNow( + ws: InternalWalletState, + transactionId: string, +): Promise<void> { + const [type, ...rest] = transactionId.split(":"); +} + /** * Immediately retry the underlying operation * of a transaction. |
