summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/tip.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/tip.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/tip.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/tip.ts12
1 files changed, 4 insertions, 8 deletions
diff --git a/packages/taler-wallet-core/src/operations/tip.ts b/packages/taler-wallet-core/src/operations/tip.ts
index 6de116098..78f8a7a31 100644
--- a/packages/taler-wallet-core/src/operations/tip.ts
+++ b/packages/taler-wallet-core/src/operations/tip.ts
@@ -37,14 +37,6 @@ import {
CoinSourceType,
CoinStatus,
} from "../db.js";
-import {
- Logger,
- URL,
- readSuccessResponseJsonOrThrow,
- encodeCrock,
- getRandomBytes,
- getHttpResponseErrorDetails,
-} from "../index.js";
import { j2s } from "@gnu-taler/taler-util";
import { checkDbInvariant, checkLogicInvariant } from "../util/invariants.js";
import { initRetryInfo, updateRetryInfoTimeout } from "../util/retries.js";
@@ -58,6 +50,10 @@ import {
selectWithdrawalDenominations,
denomSelectionInfoToState,
} from "./withdraw.js";
+import { Logger } from "../util/logging.js";
+import { URL } from "../util/url.js";
+import { getHttpResponseErrorDetails, readSuccessResponseJsonOrThrow } from "../util/http.js";
+import { encodeCrock, getRandomBytes } from "../crypto/talerCrypto.js";
const logger = new Logger("operations/tip.ts");