commit 48bc172e35fc32c51e72f9c2e2a5a0258e7806fa
parent 2dd1bbebcaed35308105a8470e1aefb9f6f19900
Author: Florian Dold <florian@dold.me>
Date: Tue, 5 Mar 2024 01:58:33 +0100
wallet-core: duplicate state
Diffstat:
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts
@@ -1168,7 +1168,12 @@ export enum PurchaseStatus {
*/
FailedClaim = 0x0501_0000,
- FailedPaidByOther = 0x0501_0001,
+ /**
+ * Tried to abort, but aborting failed or was cancelled.
+ */
+ FailedAbort = 0x0501_0001,
+
+ FailedPaidByOther = 0x0501_0002,
/**
* Payment was successful.
@@ -1188,11 +1193,6 @@ export enum PurchaseStatus {
AbortedRefunded = 0x0503_0001,
AbortedOrderDeleted = 0x0503_0002,
-
- /**
- * Tried to abort, but aborting failed or was cancelled.
- */
- FailedAbort = 0x0501_0001,
}
/**