aboutsummaryrefslogtreecommitdiff
path: root/src/types/pending.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/pending.ts')
-rw-r--r--src/types/pending.ts12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/types/pending.ts b/src/types/pending.ts
index 8a1e84362..e6c879992 100644
--- a/src/types/pending.ts
+++ b/src/types/pending.ts
@@ -24,7 +24,6 @@
import { OperationErrorDetails, WalletBalance } from "./walletTypes";
import { WithdrawalSource, RetryInfo, ReserveRecordStatus } from "./dbTypes";
import { Timestamp, Duration } from "../util/time";
-import { ReserveType } from "./history";
export const enum PendingOperationType {
Bug = "bug",
@@ -91,6 +90,17 @@ export const enum ExchangeUpdateOperationStage {
FinalizeUpdate = "finalize-update",
}
+export const enum ReserveType {
+ /**
+ * Manually created.
+ */
+ Manual = "manual",
+ /**
+ * Withdrawn from a bank that has "tight" Taler integration
+ */
+ TalerBankWithdraw = "taler-bank-withdraw",
+}
+
/**
* Status of processing a reserve.
*