Skip to content

Commit

Permalink
binance: handle tag in fetchDepositAddress ccxt#1348
Browse files Browse the repository at this point in the history
  • Loading branch information
kornrunner committed Jan 18, 2018
1 parent 3fece77 commit 985b40b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions js/binance.js
Original file line number Diff line number Diff line change
Expand Up @@ -755,9 +755,11 @@ module.exports = class binance extends Exchange {
if ('success' in response) {
if (response['success']) {
let address = this.safeString (response, 'address');
let tag = this.safeString (response, 'addressTag');
return {
'currency': currency,
'address': address,
'tag': tag,
'status': 'ok',
'info': response,
};
Expand Down

0 comments on commit 985b40b

Please sign in to comment.