aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-15 13:03:31 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-15 13:03:31 +0100
commita92b7dc0df64ce647ba55315c386e1bf447e3528 (patch)
tree75889bc4c1adee3bd9570b54c137383fbc15a9d7 /src/wallet.ts
parentded250e6a5886c469aaa57e35cc8b87b87cb929a (diff)
downloadwallet-core-a92b7dc0df64ce647ba55315c386e1bf447e3528.tar.xz
dce
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts10
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 {