From e2fe2d6db16b422ee6d69ef03f1393e1f0f42749 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 7 Oct 2021 12:01:40 +0200 Subject: add anastasis skeleton, put crypto in taler-util --- packages/taler-wallet-core/src/util/contractTerms.ts | 4 ++-- packages/taler-wallet-core/src/util/http.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/taler-wallet-core/src/util') diff --git a/packages/taler-wallet-core/src/util/contractTerms.ts b/packages/taler-wallet-core/src/util/contractTerms.ts index e52802441..652ef707d 100644 --- a/packages/taler-wallet-core/src/util/contractTerms.ts +++ b/packages/taler-wallet-core/src/util/contractTerms.ts @@ -15,14 +15,14 @@ */ import { canonicalJson } from "@gnu-taler/taler-util"; -import { kdf } from "../crypto/primitives/kdf.js"; +import { kdf } from "@gnu-taler/taler-util"; import { decodeCrock, encodeCrock, getRandomBytes, hash, stringToBytes, -} from "../crypto/talerCrypto.js"; +} from "@gnu-taler/taler-util"; export namespace ContractTermsUtil { export type PathPredicate = (path: string[]) => boolean; diff --git a/packages/taler-wallet-core/src/util/http.ts b/packages/taler-wallet-core/src/util/http.ts index e056ffcee..d01f2ee42 100644 --- a/packages/taler-wallet-core/src/util/http.ts +++ b/packages/taler-wallet-core/src/util/http.ts @@ -198,7 +198,7 @@ export async function readSuccessResponseJsonOrErrorCode( let parsedResponse: T; try { parsedResponse = codec.decode(respJson); - } catch (e) { + } catch (e: any) { throw OperationFailedError.fromCode( TalerErrorCode.WALLET_RECEIVED_MALFORMED_RESPONSE, "Response invalid", -- cgit v1.2.3