wallet-core/packages/taler-wallet-core/src/operations
2022-03-29 13:50:45 +02:00
..
backup wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02: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 wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02:00
exchanges.ts wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02:00
merchants.ts wallet: address crypto worker hang and warning about worker termination 2022-03-23 13:11:36 +01:00
pay.ts wallet: make retries more robust and consistent 2022-03-29 13:48:51 +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 wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02:00
refresh.ts wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02:00
refund.ts wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02:00
reserves.ts wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02:00
testing.ts wallet: address crypto worker hang and warning about worker termination 2022-03-23 13:11:36 +01:00
tip.ts wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02:00
transactions.ts wallet: fix type error 2022-03-29 13:50:45 +02:00
withdraw.test.ts wallet: t_s/d_us migration 2022-03-21 19:20:48 +01:00
withdraw.ts wallet: make retries more robust and consistent 2022-03-29 13:48:51 +02: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.