diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-03-05 01:36:38 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-03-05 01:36:38 +0100 |
commit | 8cbef4c4c7a976967527234b6c3b6117b6de9808 (patch) | |
tree | 4f8d47dd0ba7e953245d19ca361f7477b785b121 /lib/wallet | |
parent | 1b2897c03b08e730a2e965e50bbd2104a7a81eef (diff) |
fix inadvertent double spending with coin selection
Diffstat (limited to 'lib/wallet')
-rw-r--r-- | lib/wallet/query.ts | 17 | ||||
-rw-r--r-- | lib/wallet/wallet.ts | 21 |
2 files changed, 29 insertions, 9 deletions
diff --git a/lib/wallet/query.ts b/lib/wallet/query.ts index 62411dab3..1e39fda0f 100644 --- a/lib/wallet/query.ts +++ b/lib/wallet/query.ts @@ -144,6 +144,7 @@ class QueryStreamIndexJoin<T> extends QueryStreamBase<T> { f(true, undefined, tx); return; } + console.log("joining on", this.key(value)); let s = tx.objectStore(this.storeName).index(this.indexName); let req = s.openCursor(IDBKeyRange.only(this.key(value))); req.onsuccess = () => { @@ -163,14 +164,14 @@ class QueryStreamIndexJoin<T> extends QueryStreamBase<T> { class IterQueryStream<T> extends QueryStreamBase<T> { private storeName; private options; + private subscribers; constructor(qr, storeName, options) { super(qr); this.options = options; this.storeName = storeName; - } + this.subscribers = []; - subscribe(f) { let doIt = (tx) => { const {indexName = void 0, only = void 0} = this.options; let s; @@ -188,16 +189,24 @@ class IterQueryStream<T> extends QueryStreamBase<T> { req.onsuccess = (e) => { let cursor: IDBCursorWithValue = req.result; if (cursor) { - f(false, cursor.value, tx); + for (let f of this.subscribers) { + f(false, cursor.value, tx); + } cursor.continue(); } else { - f(true, undefined, tx); + for (let f of this.subscribers) { + f(true, undefined, tx); + } } } }; this.root.addWork(doIt, null, false); } + + subscribe(f) { + this.subscribers.push(f); + } } diff --git a/lib/wallet/wallet.ts b/lib/wallet/wallet.ts index 8291f653a..8339278f3 100644 --- a/lib/wallet/wallet.ts +++ b/lib/wallet/wallet.ts @@ -352,8 +352,9 @@ export class Wallet { // denomination let m: ExchangeCoins = {}; - function storeExchangeCoin(mc) { + function storeExchangeCoin(mc, url) { let exchange: IExchangeInfo = mc[0]; + console.log("got coin for exchange", url); let coin: Coin = mc[1]; let cd = { coin: coin, @@ -366,20 +367,28 @@ export class Wallet { console.warn("same pubkey for different currencies"); return; } - let x = m[exchange.baseUrl]; + let x = m[url]; if (!x) { - m[exchange.baseUrl] = [cd]; + m[url] = [cd]; } else { x.push(cd); } } - let ps = allowedExchanges.map((info) => { + // Make sure that we don't look up coins + // for the same URL twice ... + let handledExchanges = new Set(); + + let ps = allowedExchanges.map((info: ExchangeHandle) => { + if (handledExchanges.has(info.url)) { + return; + } + handledExchanges.add(info.url); console.log("Checking for merchant's exchange", JSON.stringify(info)); return Query(this.db) .iter("exchanges", {indexName: "pubKey", only: info.master_pub}) .indexJoin("coins", "exchangeBaseUrl", (exchange) => exchange.baseUrl) - .reduce(storeExchangeCoin); + .reduce((x) => storeExchangeCoin(x, info.url)); }); return Promise.all(ps).then(() => { @@ -398,6 +407,8 @@ export class Wallet { nextExchange: for (let key in m) { let coins = m[key]; + console.log("trying coins"); + console.log(coins); // Sort by ascending deposit fee coins.sort((o1, o2) => Amounts.cmp(o1.denom.fee_deposit, o2.denom.fee_deposit)); |