Skip to content

Commit

Permalink
fix #7839
Browse files Browse the repository at this point in the history
  • Loading branch information
frosty00 committed Oct 20, 2020
1 parent 902bd18 commit b1a4e2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/idex.js
Expand Up @@ -773,7 +773,7 @@ module.exports = class idex extends Exchange {
// ]
// }
const timestamp = this.safeInteger (order, 'time');
const fills = this.safeValue (order, 'fills');
const fills = this.safeValue (order, 'fills', []);
const id = this.safeString (order, 'orderId');
const marketId = this.safeString (order, 'market');
const side = this.safeString (order, 'side');
Expand Down

0 comments on commit b1a4e2a

Please sign in to comment.