summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/db.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/db.ts')
-rw-r--r--packages/taler-wallet-core/src/db.ts16
1 files changed, 1 insertions, 15 deletions
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts
index d13e30cc6..76bb2e393 100644
--- a/packages/taler-wallet-core/src/db.ts
+++ b/packages/taler-wallet-core/src/db.ts
@@ -19,7 +19,6 @@
*/
import {
Event,
- GlobalIDB,
IDBDatabase,
IDBFactory,
IDBObjectStore,
@@ -262,7 +261,7 @@ export const OPERATION_STATUS_ACTIVE_FIRST = 0x0100_0000;
/**
* LAST possible operation status in the active range (inclusive).
*/
-export const OPERATION_STATUS_ACTIVE_LAST = 0x0113_FFFF;
+export const OPERATION_STATUS_ACTIVE_LAST = 0x0113_ffff;
/**
* Status of a withdrawal.
@@ -338,14 +337,6 @@ export enum WithdrawalGroupStatus {
}
/**
- * Status range of nonfinal withdrawal groups.
- */
-export const withdrawalGroupNonfinalRange = GlobalIDB.KeyRange.bound(
- WithdrawalGroupStatus.PendingRegisteringBank,
- WithdrawalGroupStatus.PendingAml,
-);
-
-/**
* Extra info about a withdrawal that is used
* with a bank-integrated withdrawal.
*/
@@ -1704,11 +1695,6 @@ export enum DepositOperationStatus {
Aborted = 0x0503_0000,
}
-export const depositOperationNonfinalStatusRange = GlobalIDB.KeyRange.bound(
- DepositOperationStatus.PendingDeposit,
- DepositOperationStatus.PendingKyc,
-);
-
export interface DepositTrackingInfo {
// Raw wire transfer identifier of the deposit.
wireTransferId: string;