summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/exchanges.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-06-02 10:58:37 -0300
committerSebastian <sebasjm@gmail.com>2021-06-02 11:02:23 -0300
commit5e96bb487fb5e700aa3078558a6cddd146cb7d6e (patch)
tree790230996d71cc716bec12f620caf21bcd0dd861 /packages/taler-wallet-core/src/operations/exchanges.ts
parent9f09f5a1a5f0028bba1f76b4c8740734102cc0cf (diff)
downloadwallet-core-dev/sebasjm/imports-change.tar.gz
wallet-core-dev/sebasjm/imports-change.tar.bz2
wallet-core-dev/sebasjm/imports-change.zip
remove references to the index.ts in the importdev/sebasjm/imports-change
Diffstat (limited to 'packages/taler-wallet-core/src/operations/exchanges.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/exchanges.ts16
1 files changed, 6 insertions, 10 deletions
diff --git a/packages/taler-wallet-core/src/operations/exchanges.ts b/packages/taler-wallet-core/src/operations/exchanges.ts
index be9a383d2..72e24807f 100644
--- a/packages/taler-wallet-core/src/operations/exchanges.ts
+++ b/packages/taler-wallet-core/src/operations/exchanges.ts
@@ -50,14 +50,8 @@ import {
} from "../db.js";
import {
Logger,
- URL,
- readSuccessResponseJsonOrThrow,
- getExpiryTimestamp,
- readSuccessResponseTextOrThrow,
- encodeCrock,
- hash,
- decodeCrock,
-} from "../index.js";
+} from "../util/logging";
+
import { j2s, canonicalizeBaseUrl } from "@gnu-taler/taler-util";
import { updateRetryInfoTimeout, initRetryInfo } from "../util/retries.js";
import {
@@ -71,9 +65,11 @@ import {
WALLET_CACHE_BREAKER_CLIENT_VERSION,
WALLET_EXCHANGE_PROTOCOL_VERSION,
} from "./versions.js";
-import { HttpRequestLibrary } from "../util/http.js";
-import { CryptoApi } from "../crypto/workers/cryptoApi.js";
+import { URL } from "../util/url.js";
+import { getExpiryTimestamp, HttpRequestLibrary, readSuccessResponseJsonOrThrow, readSuccessResponseTextOrThrow } from "../util/http.js";
+import { decodeCrock, encodeCrock, hash } from "../crypto/talerCrypto.js";
import { TransactionHandle } from "../util/query.js";
+import { CryptoApi } from "../crypto/workers/cryptoApi.js";
const logger = new Logger("exchanges.ts");