taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 5949a356a0a556c899499bdd9b67fc9dc77fbb3d
parent a21d721610b268a8129456694ff15fce230981c3
Author: Sebastian <sebasjm@taler-systems.com>
Date:   Mon, 20 Apr 2026 11:17:18 -0300

since exchange v31 the account pub is mandatory

Diffstat:
Mpackages/taler-harness/src/integrationtests/test-exchange-kyc-auth.ts | 23-----------------------
1 file changed, 0 insertions(+), 23 deletions(-)

diff --git a/packages/taler-harness/src/integrationtests/test-exchange-kyc-auth.ts b/packages/taler-harness/src/integrationtests/test-exchange-kyc-auth.ts @@ -245,29 +245,6 @@ export async function runExchangeKycAuthTest(t: GlobalTestState) { await exchange.runWirewatchOnce(); - // Even when no account pub is specified, the last reserve pub for - // the account must work. - - { - const sigResp = await cryptoApi.signWalletKycAuth({ - accountPriv: encodeCrock(reservePair3.eddsaPriv), - accountPub: encodeCrock(reservePair3.eddsaPub), - }); - const checkResp = await exchangeApi.testingCheckKycStatusNoPub({ - accountSig: sigResp.sig, - paytoHash: kycPaytoHash, - }); - - console.log(j2s(checkResp)); - - switch (checkResp.case) { - case "ok": - case HttpStatusCode.Accepted: - break; - default: - t.fail(); - } - } // Now, kyc auth must work with explicit account key and both reserve pubs!