commit e073f3a793f85cfd79088fda6b4da626b4456f3f
parent 8e41165f454d737d7ca6939dcacf1738d29e90bd
Author: Florian Dold <florian@dold.me>
Date: Thu, 5 Aug 2021 00:03:41 +0200
typo
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/taler-wallet-cli/src/lint.ts b/packages/taler-wallet-cli/src/lint.ts
@@ -430,7 +430,7 @@ export async function checkExchangeHttpd(
const resp = await Promise.race([httpLib.get(keysUrl.href), delayMs(2000)]);
if (!resp) {
- context.numErr;
+ context.numErr++;
console.log(
"error: request to /keys timed out. " +
"Make sure to sign and upload denomination and signing keys " +
@@ -447,7 +447,7 @@ export async function checkExchangeHttpd(
);
if (keys.master_public_key !== pubConf.masterPublicKey) {
- context.numErr;
+ context.numErr++;
console.log(
"error: master public key of exchange does not match public key of live exchange",
);