Skip to content

Commit

Permalink
bittrex LSK handling for address tag fix ccxt#3967
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Oct 8, 2018
1 parent 820043c commit 507bd85
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 @@ -672,7 +672,7 @@ module.exports = class bittrex extends Exchange {
if (!address || message === 'ADDRESS_GENERATING')
throw new AddressPending (this.id + ' the address for ' + code + ' is being generated (pending, not ready yet, retry again later)');
let tag = undefined;
if ((code === 'XRP') || (code === 'XLM')) {
if ((code === 'XRP') || (code === 'XLM') || (code === 'LSK')) {
tag = address;
address = currency['address'];
}
Expand Down

0 comments on commit 507bd85

Please sign in to comment.