From bafb52edff4d56bcb9e3c3d0a260f507c517b08c Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 16 Dec 2020 17:59:04 +0100 Subject: don't store reserve history anymore, adjust withdrawal implementation accordingly --- packages/taler-wallet-core/src/wallet.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/taler-wallet-core/src/wallet.ts') diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts index 07af32bb8..baafc63dd 100644 --- a/packages/taler-wallet-core/src/wallet.ts +++ b/packages/taler-wallet-core/src/wallet.ts @@ -130,7 +130,7 @@ import { PendingOperationInfo, PendingOperationsResponse, PendingOperationType, -} from "./types/pending"; +} from "./types/pendingTypes"; import { WalletNotification, NotificationType } from "./types/notifications"; import { processPurchaseQueryRefund, @@ -148,7 +148,7 @@ import { TransactionsRequest, TransactionsResponse, codecForTransactionsRequest, -} from "./types/transactions"; +} from "./types/transactionsTypes"; import { getTransactions } from "./operations/transactions"; import { withdrawTestBalance, @@ -326,7 +326,7 @@ export class Wallet { } = {}, ): Promise { let done = false; - const p = new Promise((resolve, reject) => { + const p = new Promise((resolve, reject) => { // Monitor for conditions that means we're done or we // should quit with an error (due to exceeded retries). this.addNotificationListener((n) => { -- cgit v1.2.3