From a4902de89100fbdf904d8238691476a97ff142b3 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 17 Jun 2021 18:06:13 +0200 Subject: temporary fix for exchange operations --- packages/taler-wallet-core/src/common.ts | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'packages/taler-wallet-core/src') diff --git a/packages/taler-wallet-core/src/common.ts b/packages/taler-wallet-core/src/common.ts index cbbbb1e32..f1b34a291 100644 --- a/packages/taler-wallet-core/src/common.ts +++ b/packages/taler-wallet-core/src/common.ts @@ -24,6 +24,11 @@ import { } from "@gnu-taler/taler-util"; import { CryptoApi, CryptoWorkerFactory } from "./crypto/workers/cryptoApi.js"; import { ExchangeDetailsRecord, ExchangeRecord, WalletStoresV1 } from "./db.js"; +import { + getExchangeDetails, + getExchangeTrust, + updateExchangeFromUrl, +} from "./operations/exchanges.js"; import { PendingOperationsResponse } from "./pending-types.js"; import { AsyncOpMemoMap, AsyncOpMemoSingle } from "./util/asyncMemo.js"; import { HttpRequestLibrary } from "./util/http.js"; @@ -77,7 +82,7 @@ export interface ExchangeOperations { /** * Internal state of the wallet. */ -export class InternalWalletState { +export class InternalWalletState implements InternalWalletState { memoProcessReserve: AsyncOpMemoMap = new AsyncOpMemoMap(); memoMakePlanchet: AsyncOpMemoMap = new AsyncOpMemoMap(); memoGetPending: AsyncOpMemoSingle = new AsyncOpMemoSingle(); @@ -96,7 +101,12 @@ export class InternalWalletState { initCalled: boolean = false; - exchangeOps: ExchangeOperations; + // FIXME: This should be done in wallet.ts, here we should only give declarations + exchangeOps: ExchangeOperations = { + getExchangeDetails, + getExchangeTrust, + updateExchangeFromUrl, + }; /** * Promises that are waiting for a particular resource. -- cgit v1.2.3