Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
latoken fetchTicker baseVolume → quoteVolume fix #5855
  • Loading branch information
kroitor committed Sep 25, 2019
1 parent 7f32987 commit f0d7dbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/latoken.js
Expand Up @@ -359,8 +359,8 @@ module.exports = class latoken extends Exchange {
'change': change,
'percentage': percentage,
'average': undefined,
'baseVolume': this.safeFloat (ticker, 'volume'),
'quoteVolume': undefined,
'baseVolume': undefined,
'quoteVolume': this.safeFloat (ticker, 'volume'),
'info': ticker,
};
}
Expand Down

0 comments on commit f0d7dbd

Please sign in to comment.