taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 423af144eeca3158fd714cf54710ea042b6a0031
parent dbfc599540b21da399d94a966ac85b00b339b31a
Author: Florian Dold <florian@dold.me>
Date:   Thu,  9 Dec 2021 12:00:10 +0100

put 'setInsecureTrustExchange' behind env variable in benchmark

Diffstat:
Mpackages/taler-wallet-cli/src/bench1.ts | 11++++++++++-
Mpackages/taler-wallet-core/src/crypto/workers/synchronousWorker.ts | 2+-
2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/packages/taler-wallet-cli/src/bench1.ts b/packages/taler-wallet-cli/src/bench1.ts @@ -56,6 +56,13 @@ export async function runBench1(configJson: any): Promise<void> { `Starting Benchmark iterations=${numIter} deposits=${numDeposits}`, ); + const trustExchange = !!process.env["TALER_WALLET_INSECURE_TRUST_EXCHANGE"]; + if (trustExchange) { + logger.info("trusting exchange (not validating signatures)"); + } else { + logger.info("not trusting exchange (validating signatures)"); + } + let wallet = {} as Wallet; for (let i = 0; i < numIter; i++) { @@ -71,7 +78,9 @@ export async function runBench1(configJson: any): Promise<void> { persistentStoragePath: undefined, httpLib: myHttpLib, }); - wallet.setInsecureTrustExchange(); + if (trustExchange) { + wallet.setInsecureTrustExchange(); + } await wallet.client.call(WalletApiOperation.InitWallet, {}); } diff --git a/packages/taler-wallet-core/src/crypto/workers/synchronousWorker.ts b/packages/taler-wallet-core/src/crypto/workers/synchronousWorker.ts @@ -25,7 +25,7 @@ import { CryptoWorker } from "./cryptoWorkerInterface.js"; import child_process from "child_process"; import type internal from "stream"; import { OpenedPromise, openPromise } from "../../index.js"; -import { Logger } from "@gnu-taler/taler-util"; +import { j2s, Logger } from "@gnu-taler/taler-util"; const logger = new Logger("synchronousWorker.ts");