aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-integrationtests
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-01-11 00:22:06 +0100
committerFlorian Dold <florian@dold.me>2021-01-11 00:22:06 +0100
commit270d84d611792ee3a9764e58321f0139e60ea3ec (patch)
tree2945ec872d44268c3d22f6365567668ec2897d2c /packages/taler-integrationtests
parent57d7c988b3f333949d6b2c8da5585dc492932b57 (diff)
downloadwallet-core-270d84d611792ee3a9764e58321f0139e60ea3ec.tar.xz
remove excessive logging
Diffstat (limited to 'packages/taler-integrationtests')
-rw-r--r--packages/taler-integrationtests/src/harness.ts11
1 files changed, 6 insertions, 5 deletions
diff --git a/packages/taler-integrationtests/src/harness.ts b/packages/taler-integrationtests/src/harness.ts
index ebf1e98d9..58bcf2cf4 100644
--- a/packages/taler-integrationtests/src/harness.ts
+++ b/packages/taler-integrationtests/src/harness.ts
@@ -1068,19 +1068,20 @@ export class ExchangeService implements ExchangeServiceInterface {
}
async revokeDenomination(denomPubHash: string) {
- if (this.isRunning()) {
- throw Error("exchange must be stopped when revoking denominations");
+ if (!this.isRunning()) {
+ throw Error("exchange must be running when revoking denominations");
}
await runCommand(
this.globalState,
- "exchange-keyup",
- "taler-exchange-keyup",
+ "exchange-offline",
+ "taler-exchange-offline",
[
"-c",
this.configFilename,
...this.timetravelArgArr,
- "--revoke",
+ "revoke-denomination",
denomPubHash,
+ "upload",
],
);
}