From 270d84d611792ee3a9764e58321f0139e60ea3ec Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 11 Jan 2021 00:22:06 +0100 Subject: remove excessive logging --- packages/taler-integrationtests/src/harness.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'packages/taler-integrationtests/src') 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", ], ); } -- cgit v1.2.3