This commit is contained in:
Florian Dold 2016-11-15 13:03:31 +01:00
parent ded250e6a5
commit a92b7dc0df

View File

@ -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 {