Skip to content

Commit

Permalink
fixed cointiger fetchBalance
Browse files Browse the repository at this point in the history
  • Loading branch information
tankakatan committed May 30, 2018
1 parent 62f6322 commit 18f4a88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/cointiger.js
Expand Up @@ -353,7 +353,7 @@ module.exports = class cointiger extends huobipro {
}
let account = this.account ();
account['used'] = parseFloat (balance['lock']);
account['free'] = balance['normal'];
account['free'] = parseFloat (balance['normal']);
account['total'] = this.sum (account['used'], account['free']);
result[code] = account;
}
Expand Down

0 comments on commit 18f4a88

Please sign in to comment.