summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package.json2
-rw-r--r--src/headless/taler-wallet-cli.ts8
2 files changed, 8 insertions, 2 deletions
diff --git a/package.json b/package.json
index 4f4955802..6d1edeac8 100644
--- 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
index d741d7c96..9abdb05d1 100644
--- 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, {