This commit is contained in:
Sebastian 2023-02-20 12:37:05 -03:00
parent 0b6b757f65
commit 68f3c3b447
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1
6 changed files with 15 additions and 9 deletions

View File

@ -36,7 +36,10 @@ import {
TalerError, TalerError,
TalerErrorCode, TalerErrorCode,
} from "@gnu-taler/taler-util"; } from "@gnu-taler/taler-util";
import { HttpRequestLibrary, readSuccessResponseJsonOrThrow } from "@gnu-taler/taler-util/http"; import {
HttpRequestLibrary,
readSuccessResponseJsonOrThrow,
} from "@gnu-taler/taler-util/http";
const logger = new Logger("bank-api-client.ts"); const logger = new Logger("bank-api-client.ts");

View File

@ -23,7 +23,10 @@ import {
stringifyError as safeStringifyError, stringifyError as safeStringifyError,
TalerErrorCode, TalerErrorCode,
} from "@gnu-taler/taler-util"; } from "@gnu-taler/taler-util";
import { getErrorDetailFromException, makeErrorDetail } from "@gnu-taler/taler-util"; import {
getErrorDetailFromException,
makeErrorDetail,
} from "@gnu-taler/taler-util";
import { TalerCryptoInterfaceR } from "../cryptoImplementation.js"; import { TalerCryptoInterfaceR } from "../cryptoImplementation.js";
import { import {
CryptoWorkerRequestMessage, CryptoWorkerRequestMessage,

View File

@ -35,16 +35,13 @@ import * as fs from "fs";
import { NodeThreadCryptoWorkerFactory } from "./crypto/workers/nodeThreadWorker.js"; import { NodeThreadCryptoWorkerFactory } from "./crypto/workers/nodeThreadWorker.js";
import { SynchronousCryptoWorkerFactoryPlain } from "./crypto/workers/synchronousWorkerFactoryPlain.js"; import { SynchronousCryptoWorkerFactoryPlain } from "./crypto/workers/synchronousWorkerFactoryPlain.js";
import { openTalerDatabase } from "./index.js"; import { openTalerDatabase } from "./index.js";
import { import { createPlatformHttpLib } from "@gnu-taler/taler-util/http";
createPlatformHttpLib,
} from "@gnu-taler/taler-util/http";
import { SetTimeoutTimerAPI } from "./util/timer.js"; import { SetTimeoutTimerAPI } from "./util/timer.js";
import { Wallet } from "./wallet.js"; import { Wallet } from "./wallet.js";
import { DefaultNodeWalletArgs, makeTempfileId } from "./host-common.js"; import { DefaultNodeWalletArgs, makeTempfileId } from "./host-common.js";
const logger = new Logger("host-impl.node.ts"); const logger = new Logger("host-impl.node.ts");
/** /**
* Get a wallet instance with default settings for node. * Get a wallet instance with default settings for node.
* *

View File

@ -82,7 +82,6 @@ import { getTotalRefreshCost } from "./refresh.js";
*/ */
const logger = new Logger("deposits.ts"); const logger = new Logger("deposits.ts");
export async function checkDepositKycStatus( export async function checkDepositKycStatus(
ws: InternalWalletState, ws: InternalWalletState,
exchangeUrl: string, exchangeUrl: string,

View File

@ -50,7 +50,12 @@ import {
WireFeeMap, WireFeeMap,
WireInfo, WireInfo,
} from "@gnu-taler/taler-util"; } from "@gnu-taler/taler-util";
import { HttpRequestLibrary, readSuccessResponseTextOrThrow, readSuccessResponseJsonOrThrow, getExpiry } from "@gnu-taler/taler-util/http"; import {
HttpRequestLibrary,
readSuccessResponseTextOrThrow,
readSuccessResponseJsonOrThrow,
getExpiry,
} from "@gnu-taler/taler-util/http";
import { import {
DenominationRecord, DenominationRecord,
DenominationVerificationStatus, DenominationVerificationStatus,

View File

@ -370,7 +370,6 @@ export type SuspendTransactionOp = {
response: EmptyObject; response: EmptyObject;
}; };
/** /**
* Resume a transaction * Resume a transaction
*/ */