gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: -organize imports


From: gnunet
Subject: [taler-wallet-core] branch master updated: -organize imports
Date: Fri, 26 May 2023 11:13:58 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new 557dcec30 -organize imports
557dcec30 is described below

commit 557dcec30db6573c5d11ca26432008ac6621642e
Author: Florian Dold <florian@dold.me>
AuthorDate: Fri May 26 11:13:54 2023 +0200

    -organize imports
---
 .../src/operations/transactions.ts                 | 41 ++++++++--------------
 1 file changed, 15 insertions(+), 26 deletions(-)

diff --git a/packages/taler-wallet-core/src/operations/transactions.ts 
b/packages/taler-wallet-core/src/operations/transactions.ts
index ac502fc08..894becca7 100644
--- a/packages/taler-wallet-core/src/operations/transactions.ts
+++ b/packages/taler-wallet-core/src/operations/transactions.ts
@@ -42,43 +42,39 @@ import {
   WithdrawalType,
 } from "@gnu-taler/taler-util";
 import {
+  DepositElementStatus,
   DepositGroupRecord,
   ExchangeDetailsRecord,
   OperationRetryRecord,
   PeerPullPaymentIncomingRecord,
+  PeerPullPaymentIncomingStatus,
+  PeerPullPaymentInitiationRecord,
+  PeerPushPaymentIncomingRecord,
+  PeerPushPaymentIncomingStatus,
   PeerPushPaymentInitiationRecord,
-  PurchaseStatus,
   PurchaseRecord,
-  TipRecord,
-  WithdrawalGroupRecord,
-  WithdrawalRecordType,
-  WalletContractData,
-  PeerPullPaymentIncomingStatus,
-  DepositElementStatus,
-  WithdrawalGroupStatus,
+  PurchaseStatus,
   RefreshGroupRecord,
   RefreshOperationStatus,
-  PeerPushPaymentIncomingRecord,
-  PeerPushPaymentIncomingStatus,
-  PeerPullPaymentInitiationRecord,
   RefundGroupRecord,
+  TipRecord,
+  WalletContractData,
+  WithdrawalGroupRecord,
+  WithdrawalGroupStatus,
+  WithdrawalRecordType,
 } from "../db.js";
+import { GetReadOnlyAccess, WalletStoresV1 } from "../index.js";
 import { InternalWalletState } from "../internal-wallet-state.js";
 import { PendingTaskType } from "../pending-types.js";
 import { assertUnreachable } from "../util/assertUnreachable.js";
 import { checkDbInvariant, checkLogicInvariant } from "../util/invariants.js";
 import { constructTaskIdentifier, TaskIdentifiers } from "../util/retries.js";
-import {
-  resetOperationTimeout,
-  runOperationWithErrorReporting,
-  TombstoneTag,
-} from "./common.js";
+import { resetOperationTimeout, TombstoneTag } from "./common.js";
 import {
   abortDepositGroup,
   cancelAbortingDepositGroup,
   computeDepositTransactionStatus,
   deleteDepositGroup,
-  processDepositGroup,
   resumeDepositGroup,
   suspendDepositGroup,
 } from "./deposits.js";
@@ -89,28 +85,21 @@ import {
   computeRefundTransactionState,
   expectProposalDownload,
   extractContractData,
-  processPurchasePay,
 } from "./pay-merchant.js";
 import {
   computePeerPullCreditTransactionState,
   computePeerPullDebitTransactionState,
   computePeerPushCreditTransactionState,
   computePeerPushDebitTransactionState,
-  processPeerPullCredit,
 } from "./pay-peer.js";
-import {
-  computeRefreshTransactionState,
-  processRefreshGroup,
-} from "./refresh.js";
-import { computeTipTransactionStatus, processTip } from "./tip.js";
+import { computeRefreshTransactionState } from "./refresh.js";
+import { computeTipTransactionStatus } from "./tip.js";
 import {
   abortWithdrawalTransaction,
   augmentPaytoUrisForWithdrawal,
   cancelAbortingWithdrawalTransaction,
   computeWithdrawalTransactionStatus,
-  processWithdrawalGroup,
 } from "./withdraw.js";
-import { GetReadOnlyAccess, WalletStoresV1 } from "../index.js";
 
 const logger = new Logger("taler-wallet-core:transactions.ts");
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]