Skip to content

Commit

Permalink
liqui: fix for createOrder+parseOrder rework
Browse files Browse the repository at this point in the history
  • Loading branch information
mkutny committed Jan 3, 2018
1 parent f787862 commit 5cfd650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/liqui.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ module.exports = class liqui extends Exchange {
amount = this.safeFloat (order, 'start_amount');
remaining = this.safeFloat (order, 'amount');
} else {
let remaining = this.safeFloat (order, 'amount');
remaining = this.safeFloat (order, 'amount');
if (id in this.orders)
amount = this.orders[id]['amount'];
}
Expand Down

0 comments on commit 5cfd650

Please sign in to comment.