aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/index.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-04-13 15:04:08 +0200
committerFlorian Dold <florian@dold.me>2023-04-13 15:04:08 +0200
commitb96464fe09605e829dcd5715c69668e64c5454b3 (patch)
treeb4d65012c2a75feccd7819008ceb9aec6600f9af /packages/taler-harness/src/index.ts
parent7944a36e30182638b35da6e113b29de8b5f16305 (diff)
downloadwallet-core-b96464fe09605e829dcd5715c69668e64c5454b3.tar.xz
Revert "wallet-core: check master public key in /wire response"
This reverts commit 7944a36e30182638b35da6e113b29de8b5f16305.
Diffstat (limited to 'packages/taler-harness/src/index.ts')
-rw-r--r--packages/taler-harness/src/index.ts11
1 files changed, 1 insertions, 10 deletions
diff --git a/packages/taler-harness/src/index.ts b/packages/taler-harness/src/index.ts
index b185e151d..ada573698 100644
--- a/packages/taler-harness/src/index.ts
+++ b/packages/taler-harness/src/index.ts
@@ -24,7 +24,6 @@ import path from "path";
import {
addPaytoQueryParams,
Amounts,
- codecForExchangeWireJson,
Configuration,
decodeCrock,
j2s,
@@ -48,7 +47,7 @@ import { lintExchangeDeployment } from "./lint.js";
import { runEnvFull } from "./env-full.js";
import { clk } from "@gnu-taler/taler-util/clk";
import { createPlatformHttpLib } from "@gnu-taler/taler-util/http";
-import { BankAccessApiClient, validateWireInfo } from "@gnu-taler/taler-wallet-core";
+import { BankAccessApiClient } from "@gnu-taler/taler-wallet-core";
const logger = new Logger("taler-harness:index.ts");
@@ -86,14 +85,6 @@ const advancedCli = testingCli.subcommand("advancedArgs", "advanced", {
});
advancedCli
- .subcommand("validateWireResponse", "validate-wire-response")
- .action((args) => {
- const wireResp = fs.readFileSync(0, "utf8");
- const respJson = JSON.parse(wireResp);
- const wireInfo = codecForExchangeWireJson().decode(respJson);
- });
-
-advancedCli
.subcommand("decode", "decode", {
help: "Decode base32-crockford.",
})