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,
TalerErrorCode,
} 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");

View File

@ -23,7 +23,10 @@ import {
stringifyError as safeStringifyError,
TalerErrorCode,
} 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 {
CryptoWorkerRequestMessage,

View File

@ -35,16 +35,13 @@ 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 { createPlatformHttpLib } from "@gnu-taler/taler-util/http";
import { SetTimeoutTimerAPI } from "./util/timer.js";
import { Wallet } from "./wallet.js";
import { DefaultNodeWalletArgs, makeTempfileId } from "./host-common.js";
const logger = new Logger("host-impl.node.ts");
/**
* 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");
export async function checkDepositKycStatus(
ws: InternalWalletState,
exchangeUrl: string,

View File

@ -50,7 +50,12 @@ import {
WireFeeMap,
WireInfo,
} 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 {
DenominationRecord,
DenominationVerificationStatus,

View File

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