From 171d070a83c93082026c9e757f7520139ec655c9 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 24 Jan 2022 20:51:44 +0100 Subject: make tipping work with latest merchant protocol --- packages/taler-wallet-core/src/operations/tip.ts | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'packages/taler-wallet-core') diff --git a/packages/taler-wallet-core/src/operations/tip.ts b/packages/taler-wallet-core/src/operations/tip.ts index cf3502ecd..f985d8aad 100644 --- a/packages/taler-wallet-core/src/operations/tip.ts +++ b/packages/taler-wallet-core/src/operations/tip.ts @@ -33,6 +33,7 @@ import { DenomKeyType, BlindedDenominationSignature, codecForMerchantTipResponseV2, + MerchantProtocolVersion, } from "@gnu-taler/taler-util"; import { DerivedTipPlanchet } from "../crypto/cryptoTypes.js"; import { @@ -314,13 +315,15 @@ async function processTipImpl( let blindedSigs: BlindedDenominationSignature[] = []; - if (merchantInfo.protocolVersionCurrent === 2) { + if (merchantInfo.protocolVersionCurrent === MerchantProtocolVersion.V3) { const response = await readSuccessResponseJsonOrThrow( merchantResp, codecForMerchantTipResponseV2(), ); blindedSigs = response.blind_sigs.map((x) => x.blind_sig); - } else if (merchantInfo.protocolVersionCurrent === 1) { + } else if ( + merchantInfo.protocolVersionCurrent === MerchantProtocolVersion.V1 + ) { const response = await readSuccessResponseJsonOrThrow( merchantResp, codecForMerchantTipResponseV1(), @@ -330,7 +333,9 @@ async function processTipImpl( blinded_rsa_signature: x.blind_sig, })); } else { - throw Error("unsupported merchant protocol version"); + throw Error( + `unsupported merchant protocol version (${merchantInfo.protocolVersionCurrent})`, + ); } if (blindedSigs.length !== planchets.length) { -- cgit v1.2.3