diff options
-rw-r--r-- | src/wallet.ts | 10 |
1 files changed, 0 insertions, 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 { |