Skip to content

Commit

Permalink
Merge pull request #3018 from miracle2k/patch-2
Browse files Browse the repository at this point in the history
Fix gate.io fetchOrders
  • Loading branch information
kroitor committed Jun 3, 2018
2 parents 1492d57 + 343a802 commit a263173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/gateio.js
Expand Up @@ -320,7 +320,7 @@ module.exports = class gateio extends Exchange {

async fetchOrders (symbol = undefined, since = undefined, limit = undefined, params = {}) {
let response = await this.privatePostOpenOrders (params);
return this.parseOrders (response['result']['orders'], undefined, since, limit);
return this.parseOrders (response['orders'], undefined, since, limit);
}

async fetchOrder (id, symbol = undefined, params = {}) {
Expand Down

0 comments on commit a263173

Please sign in to comment.