aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/transactions.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-06-05 11:45:16 +0200
committerFlorian Dold <florian@dold.me>2023-06-05 11:45:16 +0200
commitfda5a0ed87a6473a6b34bd1ac07d5f1d45dfbc19 (patch)
treec8b7b09ca441d2a01e340dd3f569e075d3ef278e /packages/taler-wallet-core/src/operations/transactions.ts
parentf3d4ff4e3a44141ad387ef68a9083b01bf1c818a (diff)
downloadwallet-core-fda5a0ed87a6473a6b34bd1ac07d5f1d45dfbc19.tar.xz
wallet-core: restructure p2p implv0.9.3-dev.14
Diffstat (limited to 'packages/taler-wallet-core/src/operations/transactions.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/transactions.ts30
1 files changed, 4 insertions, 26 deletions
diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts
index a0da95799..1bd024d28 100644
--- a/packages/taler-wallet-core/src/operations/transactions.ts
+++ b/packages/taler-wallet-core/src/operations/transactions.ts
@@ -93,32 +93,6 @@ import {
computePayMerchantTransactionActions,
} from "./pay-merchant.js";
import {
- abortPeerPullCreditTransaction,
- abortPeerPullDebitTransaction,
- abortPeerPushCreditTransaction,
- abortPeerPushDebitTransaction,
- failPeerPullCreditTransaction,
- failPeerPullDebitTransaction,
- failPeerPushCreditTransaction,
- failPeerPushDebitTransaction,
- computePeerPullCreditTransactionState,
- computePeerPullDebitTransactionState,
- computePeerPushCreditTransactionState,
- computePeerPushDebitTransactionState,
- resumePeerPullCreditTransaction,
- resumePeerPullDebitTransaction,
- resumePeerPushCreditTransaction,
- resumePeerPushDebitTransaction,
- suspendPeerPullCreditTransaction,
- suspendPeerPullDebitTransaction,
- suspendPeerPushCreditTransaction,
- suspendPeerPushDebitTransaction,
- computePeerPushDebitTransactionActions,
- computePeerPullDebitTransactionActions,
- computePeerPullCreditTransactionActions,
- computePeerPushCreditTransactionActions,
-} from "./pay-peer.js";
-import {
abortRefreshGroup,
failRefreshGroup,
computeRefreshTransactionState,
@@ -143,6 +117,10 @@ import {
suspendWithdrawalTransaction,
computeWithdrawalTransactionActions,
} from "./withdraw.js";
+import { computePeerPullCreditTransactionState, computePeerPullCreditTransactionActions, suspendPeerPullCreditTransaction, failPeerPullCreditTransaction, resumePeerPullCreditTransaction, abortPeerPullCreditTransaction } from "./pay-peer-pull-credit.js";
+import { computePeerPullDebitTransactionState, computePeerPullDebitTransactionActions, suspendPeerPullDebitTransaction, failPeerPullDebitTransaction, resumePeerPullDebitTransaction, abortPeerPullDebitTransaction } from "./pay-peer-pull-debit.js";
+import { computePeerPushCreditTransactionState, computePeerPushCreditTransactionActions, suspendPeerPushCreditTransaction, failPeerPushCreditTransaction, resumePeerPushCreditTransaction, abortPeerPushCreditTransaction } from "./pay-peer-push-credit.js";
+import { computePeerPushDebitTransactionState, computePeerPushDebitTransactionActions, suspendPeerPushDebitTransaction, failPeerPushDebitTransaction, resumePeerPushDebitTransaction, abortPeerPushDebitTransaction } from "./pay-peer-push-debit.js";
const logger = new Logger("taler-wallet-core:transactions.ts");