Skip to content

Commit

Permalink
Merge branch 'jumpmanjay-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Dec 5, 2017
2 parents 4f62234 + 9b7dc9c commit 3825914
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/bithumb.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ module.exports = class bithumb extends Exchange {
for (let i = 0; i < currencies.length; i++) {
let id = currencies[i];
if (id != 'date') {
let market = markets[id];
let market = markets['data'][id];
let base = id;
let quote = 'KRW';
let symbol = id + '/' + quote;
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/bithumb.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def fetch_markets(self):
for i in range(0, len(currencies)):
id = currencies[i]
if id != 'date':
market = markets[id]
market = markets['data'][id]
base = id
quote = 'KRW'
symbol = id + '/' + quote
Expand Down

0 comments on commit 3825914

Please sign in to comment.