Skip to content

Commit

Permalink
Set auto conversion off for token/eth conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
tmashuang committed Jan 9, 2019
1 parent cef4cae commit 2781a15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/controllers/token-rates.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class TokenRatesController {
const query = pairs.join('&')
if (this._tokens.length > 0) {
try {
const response = await fetch(`https://exchanges.balanc3.net/pie?${query}&autoConversion=true`)
const response = await fetch(`https://exchanges.balanc3.net/pie?${query}&autoConversion=false`)
const { prices = [] } = await response.json()
prices.forEach(({ pair, price }) => {
const address = pair.split('/')[0]
Expand Down

0 comments on commit 2781a15

Please sign in to comment.