taler-typescript-core

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

commit e1168fbec00396a6ccb6d49c9405615a8a22cb72
parent 57e0b85468d577e0649e180abcee02edea97941e
Author: Florian Dold <florian.dold@gmail.com>
Date:   Mon, 24 Feb 2020 23:10:36 +0530

backwards compat with nodejs<0.11

Diffstat:
Mpackage.json | 2+-
Msrc/headless/taler-wallet-cli.ts | 8+++++++-
2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/package.json b/package.json @@ -1,6 +1,6 @@ { "name": "taler-wallet", - "version": "0.6.10", + "version": "0.6.11", "description": "", "main": "dist/node/index.js", "repository": { diff --git a/src/headless/taler-wallet-cli.ts b/src/headless/taler-wallet-cli.ts @@ -29,6 +29,12 @@ import { decodeCrock } from "../crypto/talerCrypto"; import { OperationFailedAndReportedError } from "../operations/errors"; import { Bank } from "./bank"; import { classifyTalerUri, TalerUriType } from "../util/taleruri"; +import util = require("util"); + +// Backwards compatibility with nodejs<0.11, where TextEncoder and TextDecoder +// are not globals yet. +(global as any).TextEncoder = util.TextEncoder; +(global as any).TextDecoder = util.TextDecoder; const logger = new Logger("taler-wallet-cli.ts"); @@ -418,7 +424,7 @@ testCli .requiredOption("bank", ["-b", "--bank"], clk.STRING, { default: "https://bank.test.taler.net/", }) - .requiredOption("withdrawAmount", ["-a", "--amount"], clk.STRING, { + .requiredOption("withdrawAmount", ["-w", "--amount"], clk.STRING, { default: "TESTKUDOS:10", }) .requiredOption("spendAmount", ["-s", "--spend-amount"], clk.STRING, {