aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/balance.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-01-08 21:17:00 +0100
committerFlorian Dold <florian@dold.me>2024-01-08 21:17:08 +0100
commit6f2b03021d7946a61d6b8e53dbba7fc10e5f9a4d (patch)
tree82a3985ab7267e6f4a57c0b275f1929558b5e572 /packages/taler-wallet-core/src/operations/balance.ts
parentc019f4c040e82baebdbbda8208f10be2fbc19566 (diff)
downloadwallet-core-6f2b03021d7946a61d6b8e53dbba7fc10e5f9a4d.tar.xz
wallet-core: exchange management cleanup
Diffstat (limited to 'packages/taler-wallet-core/src/operations/balance.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/balance.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/taler-wallet-core/src/operations/balance.ts b/packages/taler-wallet-core/src/operations/balance.ts
index fdaab0d5f..53ca33fe7 100644
--- a/packages/taler-wallet-core/src/operations/balance.ts
+++ b/packages/taler-wallet-core/src/operations/balance.ts
@@ -49,6 +49,7 @@
/**
* Imports.
*/
+import { GlobalIDB } from "@gnu-taler/idb-bridge";
import {
AllowedAuditorInfo,
AllowedExchangeInfo,
@@ -67,7 +68,6 @@ import {
OPERATION_STATUS_ACTIVE_FIRST,
OPERATION_STATUS_ACTIVE_LAST,
RefreshGroupRecord,
- RefreshOperationStatus,
WalletStoresV1,
WithdrawalGroupStatus,
} from "../db.js";
@@ -75,8 +75,7 @@ import { InternalWalletState } from "../internal-wallet-state.js";
import { assertUnreachable } from "../util/assertUnreachable.js";
import { checkLogicInvariant } from "../util/invariants.js";
import { GetReadOnlyAccess } from "../util/query.js";
-import { getExchangeDetails } from "./exchanges.js";
-import { GlobalIDB } from "@gnu-taler/idb-bridge";
+import { getExchangeWireDetailsInTx } from "./exchanges.js";
/**
* Logger.
@@ -516,7 +515,7 @@ export async function getBalanceDetail(
.runReadOnly(async (tx) => {
const allExchanges = await tx.exchanges.iter().toArray();
for (const e of allExchanges) {
- const details = await getExchangeDetails(tx, e.baseUrl);
+ const details = await getExchangeWireDetailsInTx(tx, e.baseUrl);
if (!details || req.currency !== details.currency) {
continue;
}