wallet-core/packages/taler-wallet-core/src/operations
Sebastian 029340469a
show refund info in purchase
notify refund pending with accept button on the purchase details
better payto box
2022-05-29 01:23:21 -03:00
..
backup fix: update retry info before return 2022-05-18 15:57:10 -03:00
balance.ts wallet: address crypto worker hang and warning about worker termination 2022-03-23 13:11:36 +01:00
common.ts wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02:00
deposits.ts fix: update retry info before return 2022-05-18 15:57:10 -03:00
exchanges.ts fix: update retry info before return 2022-05-18 15:57:10 -03:00
merchants.ts wallet: address crypto worker hang and warning about worker termination 2022-03-23 13:11:36 +01:00
pay.ts -formatting 2022-05-19 11:01:07 +02:00
pending.ts wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02:00
README.md wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02:00
recoup.ts all retryInfo function in the same namespace, adding missing retryInfo increment 2022-05-18 14:41:51 -03:00
refresh.ts fix: update retry info before return 2022-05-18 15:57:10 -03:00
refund.ts show refund info in purchase 2022-05-29 01:23:21 -03:00
reserves.ts wallet-core: long-poll longer for reserve status 2022-05-19 13:30:04 +02:00
testing.ts wallet: address crypto worker hang and warning about worker termination 2022-03-23 13:11:36 +01:00
tip.ts fix: update retry info before return 2022-05-18 15:57:10 -03:00
transactions.ts show refund info in purchase 2022-05-29 01:23:21 -03:00
withdraw.test.ts wallet-core: implement age restriction support 2022-04-27 00:50:17 +02:00
withdraw.ts all retryInfo function in the same namespace, adding missing retryInfo increment 2022-05-18 14:41:51 -03:00

Wallet Operations

This folder contains the implementations for all wallet operations that operate on the wallet state.

To avoid cyclic dependencies, these files must not reference each other. Instead, other operations should only be accessed via injected dependencies.

Avoiding cyclic dependencies is important for module bundlers.

Retries

Many operations in the wallet are automatically retried when they fail or when the wallet is still waiting for some external condition (such as a wire transfer to the exchange).

Retries are generally controlled by a "retryInfo" field in the corresponding database record. This field is set to undefined when no retry should be scheduled.

Generally, the code to process a pending operation should first increment the retryInfo (and reset the lastError) and then process the operation. This way, it is impossble to forget incrementing the retryInfo.

For each retriable operation, there are usually setup<Op>Retry, increment<Op>Retry and report<Op>Error operations.

Note that this means that during some operation, lastError will be cleared. The UI should accommodate for this.

It would be possible to store a list of last errors, but we currently don't do that.