Skip to content

Commit

Permalink
bittrex fetchClosedOrders fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Jan 12, 2018
1 parent 4a98b76 commit 2448fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/bittrex.js
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ module.exports = class bittrex extends Exchange {
}

async fetchClosedOrders (symbol = undefined, since = undefined, limit = undefined, params = {}) {
let orders = await this.fetchOrders (symbol, params);
let orders = await this.fetchOrders (symbol, since, limit, params);
return this.filterBy (orders, 'status', 'closed');
}

Expand Down

0 comments on commit 2448fb1

Please sign in to comment.