Skip to content

Commit

Permalink
minor edits to qryptos
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Dec 6, 2017
1 parent db7f1b8 commit 1da6f9f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions js/qryptos.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,11 @@ module.exports = class qryptos extends Exchange {
};
}

async fetchOrder (id) {
async fetchOrder (id, symbol = undefined, params = {}) {
await this.loadMarkets ();
let order = await this.privateGetOrdersId ({ 'id': id });
let order = await this.privateGetOrdersId (this.extend ({
'id': id,
}, params));
return this.parseOrder (order);
}

Expand Down

0 comments on commit 1da6f9f

Please sign in to comment.