This commit is contained in:
Florian Dold 2021-08-05 00:03:41 +02:00
parent 8e41165f45
commit e073f3a793
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -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",
);