From a92b7dc0df64ce647ba55315c386e1bf447e3528 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 15 Nov 2016 13:03:31 +0100 Subject: [PATCH] dce --- src/wallet.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/wallet.ts b/src/wallet.ts index 15a3b73c4..49b0f1135 100644 --- a/src/wallet.ts +++ b/src/wallet.ts @@ -231,16 +231,6 @@ function isWithdrawableDenom(d: Denomination) { } -/** - * Result of updating exisiting information - * about an exchange with a new '/keys' response. - */ -interface KeyUpdateInfo { - updatedExchangeInfo: IExchangeInfo; - addedDenominations: Denomination[]; - removedDenominations: Denomination[]; -} - export type CoinSelectionResult = {exchangeUrl: string, cds: CoinWithDenom[]}|undefined; export function selectCoins(cds: CoinWithDenom[], paymentAmount: AmountJson, depositFeeLimit: AmountJson): CoinWithDenom[]|undefined {