Skip to content

Commit

Permalink
Set auto conversion off for token/eth conversion (#6005)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmashuang authored and danfinlay committed Jan 10, 2019
1 parent eaca9d2 commit 3bd3e64
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 3bd3e64

Please sign in to comment.