aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-14 03:01:42 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-14 03:01:42 +0100
commit8fdbfeea599281d6fa90e7f38009ad94c4d7490e (patch)
tree915c134928b0340d941a243757ca000ffc541903 /src/wallet.ts
parentfdf4b1408ff510ea10e0da9f24d9661cbe138d37 (diff)
downloadwallet-core-8fdbfeea599281d6fa90e7f38009ad94c4d7490e.tar.xz
factor out helper function
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts68
1 files changed, 40 insertions, 28 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index dfd9e161b..15a3b73c4 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -241,6 +241,40 @@ interface KeyUpdateInfo {
removedDenominations: Denomination[];
}
+export type CoinSelectionResult = {exchangeUrl: string, cds: CoinWithDenom[]}|undefined;
+
+export function selectCoins(cds: CoinWithDenom[], paymentAmount: AmountJson, depositFeeLimit: AmountJson): CoinWithDenom[]|undefined {
+ if (cds.length == 0) {
+ return undefined;
+ }
+ // Sort by ascending deposit fee
+ cds.sort((o1, o2) => Amounts.cmp(o1.denom.fee_deposit,
+ o2.denom.fee_deposit));
+ let currency = cds[0].denom.value.currency;
+ let cdsResult: CoinWithDenom[] = [];
+ let accFee: AmountJson = Amounts.getZero(currency);
+ let accAmount: AmountJson = Amounts.getZero(currency);
+ let isBelowFee = false;
+ let coversAmount = false;
+ let coversAmountWithFee = false;
+ for (let i = 0; i < cds.length; i++) {
+ let {coin,denom} = cds[i];
+ cdsResult.push(cds[i]);
+ if (Amounts.cmp(denom.fee_deposit, coin.currentAmount) >= 0) {
+ continue;
+ }
+ accFee = Amounts.add(denom.fee_deposit, accFee).amount;
+ accAmount = Amounts.add(coin.currentAmount, accAmount).amount;
+ coversAmount = Amounts.cmp(accAmount, paymentAmount) >= 0;
+ coversAmountWithFee = Amounts.cmp(accAmount, Amounts.add(paymentAmount, denom.fee_deposit).amount) >= 0;
+ isBelowFee = Amounts.cmp(accFee, depositFeeLimit) <= 0;
+ if ((coversAmount && isBelowFee) || coversAmountWithFee) {
+ return cdsResult;
+ }
+ }
+ return undefined;
+}
+
/**
* Get a list of denominations (with repetitions possible)
@@ -439,7 +473,7 @@ export class Wallet {
*/
private async getCoinsForPayment(paymentAmount: AmountJson,
depositFeeLimit: AmountJson,
- allowedExchanges: ExchangeHandle[]): Promise<{exchangeUrl: string, cds: CoinWithDenom[]}|undefined> {
+ allowedExchanges: ExchangeHandle[]): Promise<CoinSelectionResult> {
for (let exchangeHandle of allowedExchanges) {
let exchange = await this.q().get(Stores.exchanges, exchangeHandle.url);
@@ -475,35 +509,13 @@ export class Wallet {
cds.push({coin, denom});
}
- // Sort by ascending deposit fee
- cds.sort((o1, o2) => Amounts.cmp(o1.denom.fee_deposit,
- o2.denom.fee_deposit));
-
- let cdsResult: CoinWithDenom[] = [];
- let accFee: AmountJson = Amounts.getZero(currency);
- let accAmount: AmountJson = Amounts.getZero(currency);
- let isBelowFee = false;
- let coversAmount = false;
- let coversAmountWithFee = false;
- for (let i = 0; i < cds.length; i++) {
- let {coin,denom} = cds[i];
- cdsResult.push(cds[i]);
- if (Amounts.cmp(denom.fee_deposit, coin.currentAmount) >= 0) {
- continue;
- }
- accFee = Amounts.add(denom.fee_deposit, accFee).amount;
- accAmount = Amounts.add(coin.currentAmount, accAmount).amount;
- coversAmount = Amounts.cmp(accAmount, paymentAmount) >= 0;
- coversAmountWithFee = Amounts.cmp(accAmount, Amounts.add(paymentAmount, denom.fee_deposit).amount) >= 0;
- isBelowFee = Amounts.cmp(accFee, depositFeeLimit) <= 0;
- if ((coversAmount && isBelowFee) || coversAmountWithFee) {
- return {
- exchangeUrl: exchangeHandle.url,
- cds: cdsResult,
- };
+ let res = selectCoins(cds, paymentAmount, depositFeeLimit);
+ if (res) {
+ return {
+ exchangeUrl: exchangeHandle.url,
+ cds: res,
}
}
-
}
return undefined;
}