Skip to content

Commit

Permalink
reversed vaultoro Gold (GLD)/BTC market fix #3028
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Jun 5, 2018
1 parent 7ce90fb commit 075815b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/vaultoro.js
Expand Up @@ -62,8 +62,8 @@ module.exports = class vaultoro extends Exchange {
let result = [];
let markets = await this.publicGetMarkets ();
let market = markets['data'];
let baseId = market['BaseCurrency'];
let quoteId = market['MarketCurrency'];
let baseId = market['MarketCurrency'];
let quoteId = market['BaseCurrency'];
let base = this.commonCurrencyCode (baseId);
let quote = this.commonCurrencyCode (quoteId);
let symbol = base + '/' + quote;
Expand Down

0 comments on commit 075815b

Please sign in to comment.