summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/host-impl.node.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-02-19 19:45:26 +0100
committerFlorian Dold <florian@dold.me>2024-02-19 20:07:45 +0100
commite1a7bf4825162b4b95669ae6b4552589f4a64217 (patch)
treec8bdfe19ed9ed120e44d7c4be04a10bcfd1e67ff /packages/taler-wallet-core/src/host-impl.node.ts
parent0b044475a96ae140754ce478af41fc24424d7cc3 (diff)
downloadwallet-core-e1a7bf4825162b4b95669ae6b4552589f4a64217.tar.gz
wallet-core-e1a7bf4825162b4b95669ae6b4552589f4a64217.tar.bz2
wallet-core-e1a7bf4825162b4b95669ae6b4552589f4a64217.zip
wallet-core: better import hygiene, cleanup withdrawals
Diffstat (limited to 'packages/taler-wallet-core/src/host-impl.node.ts')
-rw-r--r--packages/taler-wallet-core/src/host-impl.node.ts9
1 files changed, 4 insertions, 5 deletions
diff --git a/packages/taler-wallet-core/src/host-impl.node.ts b/packages/taler-wallet-core/src/host-impl.node.ts
index 622ea742e..a2c37b32b 100644
--- a/packages/taler-wallet-core/src/host-impl.node.ts
+++ b/packages/taler-wallet-core/src/host-impl.node.ts
@@ -25,22 +25,21 @@
import type { IDBFactory } from "@gnu-taler/idb-bridge";
// eslint-disable-next-line no-duplicate-imports
import {
+ AccessStats,
BridgeIDBFactory,
MemoryBackend,
createSqliteBackend,
shimIndexedDB,
} from "@gnu-taler/idb-bridge";
-import { AccessStats } from "@gnu-taler/idb-bridge";
+import { createNodeSqlite3Impl } from "@gnu-taler/idb-bridge/node-sqlite3-bindings";
import { Logger } from "@gnu-taler/taler-util";
+import { createPlatformHttpLib } from "@gnu-taler/taler-util/http";
import * as fs from "fs";
import { NodeThreadCryptoWorkerFactory } from "./crypto/workers/nodeThreadWorker.js";
import { SynchronousCryptoWorkerFactoryPlain } from "./crypto/workers/synchronousWorkerFactoryPlain.js";
-import { openTalerDatabase } from "./index.js";
-import { createPlatformHttpLib } from "@gnu-taler/taler-util/http";
+import { DefaultNodeWalletArgs, makeTempfileId } from "./host-common.js";
import { SetTimeoutTimerAPI } from "./util/timer.js";
import { Wallet } from "./wallet.js";
-import { DefaultNodeWalletArgs, makeTempfileId } from "./host-common.js";
-import { createNodeSqlite3Impl } from "@gnu-taler/idb-bridge/node-sqlite3-bindings";
const logger = new Logger("host-impl.node.ts");