diff options
| author | Florian Dold <florian@dold.me> | 2023-04-25 23:56:57 +0200 |
|---|---|---|
| committer | Florian Dold <florian@dold.me> | 2023-04-25 23:58:17 +0200 |
| commit | fd86791e42a0651968ae58969de178dc72929ffb (patch) | |
| tree | bbfeff4205ae6990ee60367b884b83a74e8b0c1a /packages/taler-wallet-core/src/db.ts | |
| parent | f94d7bc15115753ce3c492deb72ff9fdb4a66cba (diff) | |
-DD37 wip
Diffstat (limited to 'packages/taler-wallet-core/src/db.ts')
| -rw-r--r-- | packages/taler-wallet-core/src/db.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts index 9b250cede..cff874508 100644 --- a/packages/taler-wallet-core/src/db.ts +++ b/packages/taler-wallet-core/src/db.ts @@ -166,6 +166,12 @@ export enum WithdrawalGroupStatus { Ready = 13, /** + * We are telling the bank that we don't want to complete + * the withdrawal! + */ + AbortingBank = 14, + + /** * The corresponding withdraw record has been created. * No further processing is done, unless explicitly requested * by the user. @@ -176,6 +182,12 @@ export enum WithdrawalGroupStatus { * The bank aborted the withdrawal. */ BankAborted = 51, + + SuspendedRegisteringBank = 52, + SuspendedWaitConfirmBank = 53, + SuspendedQueryingStatus = 54, + SuspendedReady = 55, + SuspendedAbortingBank = 55, } /** |
