summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/types
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-08-13 15:15:01 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-08-13 15:15:01 +0530
commit599c8380f23584c24633927cafe8277fb9e41579 (patch)
tree16c9728fadcb7ea1ee150ced0d74240fa09152b4 /packages/taler-wallet-core/src/types
parent61ee1efbe9b31062c5bdf890e9b86c631c5d9b2b (diff)
downloadwallet-core-599c8380f23584c24633927cafe8277fb9e41579.tar.gz
wallet-core-599c8380f23584c24633927cafe8277fb9e41579.tar.bz2
wallet-core-599c8380f23584c24633927cafe8277fb9e41579.zip
make withdrawal requests sequentially, clean up withdrawal logic a bit
Diffstat (limited to 'packages/taler-wallet-core/src/types')
-rw-r--r--packages/taler-wallet-core/src/types/dbTypes.ts8
1 files changed, 2 insertions, 6 deletions
diff --git a/packages/taler-wallet-core/src/types/dbTypes.ts b/packages/taler-wallet-core/src/types/dbTypes.ts
index 26cf6915d..3c4c2a250 100644
--- a/packages/taler-wallet-core/src/types/dbTypes.ts
+++ b/packages/taler-wallet-core/src/types/dbTypes.ts
@@ -662,6 +662,8 @@ export interface PlanchetRecord {
withdrawalDone: boolean;
+ lastError: OperationErrorDetails | undefined;
+
/**
* Public key of the reserve, this might be a reserve not
* known to the wallet if the planchet is from a tip.
@@ -1504,12 +1506,6 @@ export interface WithdrawalGroupRecord {
*/
retryInfo: RetryInfo;
- /**
- * Last error per coin/planchet, or undefined if no error occured for
- * the coin/planchet.
- */
- lastErrorPerCoin: { [coinIndex: number]: OperationErrorDetails };
-
lastError: OperationErrorDetails | undefined;
}